Bump docker/metadata-action from 4 to 5 (#21) #67
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: test | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '*' | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Build docker: | |
- name: Build named dockerfile | |
run: docker build . --tag wemake-services/wemake-dind:latest | |
- name: Test docker build | |
run: | | |
docker run \ | |
-v $PWD/test.sh:/build/test.sh \ | |
--rm wemake-services/wemake-dind:latest \ | |
bash /build/test.sh | |
deploy: | |
if: "github.event_name == 'push' && github.repository == 'wemake-services/wemake-dind'" | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: wemakeservices/wemake-dind | |
tags: | | |
# Produce versioned docker tag on git tag: | |
type=ref,event=tag | |
# Set latest tag for default branch: | |
type=raw,value=latest,enable={{is_default_branch}} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} |