DockerPush : MathieuSchl push 'Add docker image' 🚀 #1
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 push" | |
run-name: "DockerPush : ${{ github.actor }} push '${{ github.event.head_commit.message }}' 🚀" | |
on: | |
push: | |
jobs: | |
Test-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build and push (tagged version) | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
file: ./Dockerfile | |
push: false | |
tags: "test:lastest" | |