Docker Image CI #316
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: Docker Image CI | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
docker: | ||
name: Build and upload Docker image | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code changes | ||
uses: actions/checkout@v4 | ||
- name: Prepare Docker | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Access Docker | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
- name: Extract metadata | ||
id: metadata | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: | | ||
rob93c/stickerify | ||
tags: | | ||
type=raw,value=latest,enable={{is_default_branch}} | ||
type=ref,event=branch | ||
type=ref,event=pr | ||
- name: Set Docker tags | ||
id: docker-tags | ||
run: | | ||
Check failure on line 40 in .github/workflows/docker-image.yml GitHub Actions / Docker Image CIInvalid workflow file
|
||
tags="${{ steps.metadata.outputs.tags }}" | ||
if [[ " ${{ tags }} " =~ "latest" ]] then | ||
tags=("latest") | ||
fi | ||
echo "tags=${tags}" >> "$GITHUB_OUTPUT" | ||
- name: Upload Docker image | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
push: true | ||
tags: ${{ steps.docker-tags.outputs.tags }} | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
- name: Delete Docker tag | ||
if: github.event.pull_request.merged | ||
run: | | ||
tag_to_delete="pr-${{github.event.issue.number}}" | ||
docker rmi rob93c/stickerify:$tag_to_delete | ||
echo "The tag $tag_to_delete has been deleted" |