Skip to content

Update changelog

Update changelog #25

Workflow file for this run

name: Build and Push Docker Image
on:
push:
paths-ignore:
- '.vscode/**'
- '**/*.md'
jobs:
docker:
runs-on: ubuntu-latest
steps:
- id: commit
uses: pr-mpt/actions-commit-hash@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: 🐳 Build and push
uses: docker/build-push-action@v5
with:
no-cache: true
push: ${{ github.ref_name == 'v3' }}
tags: 27rogi/website:latest
build-args: |
"BRANCH=${{ steps.commit.outputs.short }}"