Add latest/latest-dev tag #8
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: ci | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'develop' | |
- 'feature/github-actions' | |
jobs: | |
dockerhub-build-push: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: List directory structure | |
run: ls -lah | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Generate timestamp | |
id: timestamp | |
run: echo "TIMESTAMP=$(date +'%Y%m%d%H%M%S')" >> $GITHUB_ENV | |
- name: Determine tag | |
id: tag | |
run: | | |
if [[ ${{ github.ref }} == 'refs/heads/main' ]]; then | |
echo "::set-output name=tag::latest" | |
elif [[ ${{ github.ref }} == 'refs/heads/develop' ]]; then | |
echo "::set-output name=tag::latest-dev" | |
fi | |
- name: Build and push | |
uses: docker/build-push-action@v6 | |
with: | |
push: true | |
tags: | | |
vitobelgium/guppy:${{ steps.tag.outputs.tag }} | |
vitobelgium/guppy:${{ env.TIMESTAMP }} | |
context: ./server | |
file: ./server/Dockerfile | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |