Skip to content

Commit

Permalink
Add .github/workflows/release.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
ushitora-anqou committed Sep 26, 2023
1 parent b6a05a6 commit ce4af95
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release Qash

on:
push:
tags:
- '*'

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Set-up OCaml
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: 5.0
- run: opam install . --deps-only --with-test
- run: opam exec -- dune build
- run: cp _build/default/bin/main.exe qash
- uses: ncipollo/release-action@v1
with:
allowUpdates: true
artifacts: qash

0 comments on commit ce4af95

Please sign in to comment.