update to use SETUP_COMPLETED #10
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: build our image for a tagged version | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Prepare | |
id: prepare | |
run: | | |
VERSION=${GITHUB_REF#refs/tags/v} | |
echo ::set-output name=version::${VERSION} | |
- name: login to docker hub | |
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin | |
- name: build the image | |
uses: docker/build-push-action@v6 | |
with: | |
push: true | |
platforms: linux/amd64,linux/arm64,linux/arm/v7 | |
tags: "mhzawadi/invoiceplane:${{ steps.prepare.outputs.version }}" |