Ajout de la création automatique de la nouvelle version
Some checks failed
Publish / Publish binaries (push) Failing after 36s
Some checks failed
Publish / Publish binaries (push) Failing after 36s
This commit is contained in:
30
.gitea/workflows/release.yml
Normal file
30
.gitea/workflows/release.yml
Normal file
@@ -0,0 +1,30 @@
|
||||
name: Publish
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Publish binaries
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Upload fseq to release
|
||||
uses: svenstaro/upload-release-action@v2
|
||||
with:
|
||||
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
file: White-light.fseq
|
||||
asset_name: White-light.fseq
|
||||
tag: ${{ github.ref }}
|
||||
overwrite: true
|
||||
- name: Upload wav to release
|
||||
uses: svenstaro/upload-release-action@v2
|
||||
with:
|
||||
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
file: White-light.wav
|
||||
asset_name: White-light.wav
|
||||
tag: ${{ github.ref }}
|
||||
overwrite: true
|
||||
Reference in New Issue
Block a user