build, add odbeta

This commit is contained in:
kub 2023-11-09 23:38:38 +01:00
parent 6bd90c9666
commit 02ed0c7f60
4 changed files with 82 additions and 2 deletions

19
.github/workflows/prepare.yml vendored Normal file
View file

@ -0,0 +1,19 @@
name: prepare
on: workflow_call
jobs:
prepare:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: create release
id: create_release
if: ${{ github.ref_type == 'tag' }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
tag=$(echo ${{ github.ref }} | sed 's:refs/tags/::')
gh release create "$tag" --verify-tag -d -t "$tag" -n "$tag"