v0.1-alpha-3 #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: Publish WardrobeManager.Api Docker image | ||
on: | ||
release: | ||
branches: ["master"] | ||
env: | ||
IMAGE_NAME: wardrobemanager-api | ||
jobs: | ||
push_to_registry: | ||
name: Push Docker image to Docker Hub | ||
runs-on: ubuntu-latest | ||
permissions: | ||
packages: write | ||
contents: read | ||
attestations: write | ||
id-token: write | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v4 | ||
- name: Log in to Docker Hub | ||
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
- name: Build and push Docker image | ||
id: push | ||
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 | ||
with: | ||
context: . | ||
file: docker/WardrobeManager.Api/Dockerfile | ||
push: true | ||
tags: ${{ github.event.release.tag_name }} | ||
tags: ${{ secrets.DOCKER_USERNAME }}/${{ env.IMAGE_NAME }}:${{ github.event.release.tag_name }} , ${{ secrets.DOCKER_USERNAME }}/${{ env.IMAGE_NAME }}:latest | ||
Check failure on line 37 in .github/workflows/BuildAndPushApiDockerImage.yml GitHub Actions / Publish WardrobeManager.Api Docker imageInvalid workflow file
Check failure on line 37 in .github/workflows/BuildAndPushApiDockerImage.yml GitHub Actions / Publish WardrobeManager.Api Docker imageInvalid workflow file
|