fix: update dockerfile's location #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🚀 Publish | |
on: | |
push: | |
tags: | |
- 'podbee-v*' | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # Required for creating the GitHub release | |
packages: write # Required for pushing to GitHub Container Registry | |
steps: | |
- name: ⬇️ Check out code | |
uses: actions/checkout@v3 | |
- name: Version | |
id: version | |
run: | | |
if [[ $GITHUB_REF == refs/tags/* ]] | |
then | |
tag=${GITHUB_REF##refs/tags/} | |
v=${tag##podbee-} | |
echo "::set-output name=version::$v" | |
else | |
echo "::set-output name=version::$GITHUB_SHA" | |
fi | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: PodBee ${{ steps.version.outputs.version }} | |
draft: false | |
prerelease: false | |
- name: Set up QEMU | |
uses: docker/[email protected] | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.PAT }} # `PAT` is a secret that contains your Personal Access Token with `write:packages` scope | |
- name: Build and push PodBee image | |
id: build-and-push | |
uses: docker/[email protected] | |
with: | |
context: . | |
file: Dockerfile | |
platforms: linux/amd64,linux/arm64/v8 | |
push: true | |
tags: | | |
ghcr.io/biznesbees/podbee:${{ steps.version.outputs.version }} |