Fix changelog version formatting and update links #123
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: | |
push: | |
branches: | |
- "master" | |
pull_request: | |
branches: | |
- "master" | |
schedule: | |
- cron: '0 5 * * 0' # This will run the workflow every Sunday at 5 am | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Get the commit ID | |
id: get_commit | |
run: echo "commit=$(git rev-parse HEAD)" >> $GITHUB_ENV | |
- name: Inject version and commit ID into index.ejs | |
run: | | |
COMMIT=${{ env.commit }} | |
echo "<!-- Version: HEAD, Commit ID: $COMMIT -->" >> views/index.ejs | |
grep "<!-- Version: HEAD, Commit ID: $COMMIT -->" views/index.ejs || exit 1 | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 | |
with: | |
# list of Docker images to use as base name for tags | |
images: | | |
wemove/read2burn | |
tags: | | |
type=raw,value=latest | |
- name: Login to Docker Hub | |
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
id: push | |
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 | |
with: | |
context: . | |
push: ${{ github.event_name != 'pull_request' }} | |
file: docker/Dockerfile | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} |