Skip to content

Update GitHub actions workflow for releases #4

Update GitHub actions workflow for releases

Update GitHub actions workflow for releases #4

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
actions: write
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- 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 test
- run: make publish
- run: make release