Skip to content

Publish

Publish #121

Workflow file for this run

name: Publish
on:
push:
branches:
- main
workflow_dispatch:
schedule:
- cron: '0 8 * * *' # Every day at 8:00 PM AEDT
permissions:
contents: read
packages: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
publish:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/cache@v4
with:
path: |
~/.asdf
.tool-versions
key: ${{ runner.os }}-asdf-${{ hashFiles('.tool-versions') }}
restore-keys: |
${{ runner.os }}-asdf-
- uses: asdf-vm/actions/install@v3
- run: make publish