Skip to content

release 1.3.1

release 1.3.1 #13

Workflow file for this run

name: Create github release
permissions:
contents: write
packages: write
on:
push:
tags:
- v[0-9]+.*
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@v2
with:
tool: [email protected],[email protected],just@1,hurl@4,[email protected]
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- run: just verify
- name: create docker images
working-directory: ./distributions
run: |
just build-docker-image ${{ github.ref_name }}
just push-docker
- uses: taiki-e/create-gh-release-action@v1
with:
changelog: CHANGELOG.md
token: ${{ github.token }}