name: 'Push Release Docker Images' on: push: tags: - 'v*.*.*' paths: - 'src/**' - 'server/**' - 'prisma/**' - '.github/**' - 'Dockerfile' workflow_dispatch: jobs: push_to_ghcr: name: Push Release Image to GitHub Packages runs-on: ubuntu-latest steps: - name: Check out the repo uses: actions/checkout@v2 - name: Get version uses: sergeysova/jq-action@v2 id: version with: cmd: 'jq .version package.json -r' - name: Setup QEMU uses: docker/setup-qemu-action@v1 - name: Set up Docker Buildx id: buildx uses: docker/setup-buildx-action@v1 - name: Login to Github Packages uses: docker/login-action@v1 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build Docker Image uses: docker/build-push-action@v2 with: push: true platforms: linux/amd64,linux/arm64 tags: | ghcr.io/diced/zipline:latest ghcr.io/diced/zipline:${{ steps.version.outputs.value }}