This commit is contained in:
parent
7410c13aec
commit
25901f5bf8
2 changed files with 4 additions and 2 deletions
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
|
@ -15,6 +15,8 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Environment Variables
|
- name: Environment Variables
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
run: env
|
run: env
|
||||||
|
|
||||||
- name: Make
|
- name: Make
|
||||||
|
|
@ -24,7 +26,7 @@ jobs:
|
||||||
|
|
||||||
- name: Create release
|
- name: Create release
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
uses: https://code.forgejo.org/actions/forgejo-release@v2
|
uses: https://code.forgejo.org/actions/forgejo-release@v2
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
2
flutterw
2
flutterw
|
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
#set -x
|
set -x
|
||||||
|
|
||||||
BUILDCACHE=./.build-container-cache
|
BUILDCACHE=./.build-container-cache
|
||||||
DOCKERFILE=./docker/Dockerfile
|
DOCKERFILE=./docker/Dockerfile
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue