mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
build, add odbeta
This commit is contained in:
parent
6bd90c9666
commit
02ed0c7f60
4 changed files with 82 additions and 2 deletions
19
.github/workflows/prepare.yml
vendored
Normal file
19
.github/workflows/prepare.yml
vendored
Normal 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"
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue