error con release
Some checks failed
Create release from tag / create_release (push) Failing after 9s
Some checks failed
Create release from tag / create_release (push) Failing after 9s
This commit is contained in:
parent
d349165d98
commit
41661372e2
1 changed files with 10 additions and 9 deletions
19
.github/workflows/release.yml
vendored
19
.github/workflows/release.yml
vendored
|
|
@ -37,16 +37,17 @@ jobs:
|
||||||
flutter build web --release
|
flutter build web --release
|
||||||
pushd build/web && zip -r ../../webapp.zip * && popd
|
pushd build/web && zip -r ../../webapp.zip * && popd
|
||||||
pushd build/linux/x64/release/bundle && zip -r ../../../../../linux-bin.zip * && popd
|
pushd build/linux/x64/release/bundle && zip -r ../../../../../linux-bin.zip * && popd
|
||||||
|
mkdir -p release-dir
|
||||||
|
mv webapp.zip linux-bin.zip release-dir
|
||||||
|
|
||||||
- name: Create release
|
- name: Create release
|
||||||
env:
|
uses: actions/forgejo-release@v2.12.0
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
uses: https://code.forgejo.org/actions/forgejo-release@v2
|
|
||||||
with:
|
with:
|
||||||
direction: upload
|
direction: upload
|
||||||
release-dir: .
|
url: https://my-forgejo-instance.net
|
||||||
tag: ${{ github.ref_name }}
|
repo: myuser/myrepo
|
||||||
files: |
|
token: ${{ secrets.WRITE_TOKEN_TO_MYREPO }}
|
||||||
./linux-bin.zip
|
tag: $GITHUB_REF_NAME
|
||||||
./webapp.zip
|
release-dir: dist/release
|
||||||
|
release-notes: "MY RELEASE NOTES"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue