Skip to content

Commit fd688f4

Browse files
committed
GH_TOKEN
Signed-off-by: Günter Neiß <gneiss@web.de>
1 parent 993dcd2 commit fd688f4

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/LinuxBuild.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ env:
66
NODE_VERSION: '18.17'
77
YARN_VERSION: '1.22'
88
GO_VERSION: '1.21'
9+
GH_TOKEN: ${{ github.token }}
910
jobs:
1011
build:
1112
name: build Linux
@@ -54,6 +55,19 @@ jobs:
5455
yarn --cwd electron-app build
5556
yarn --cwd electron-app package
5657
find . -iname "*.AppImage"
58+
- name: Install gh and jq
59+
env:
60+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
61+
working-directory: './'
62+
run: |
63+
set -x
64+
set -v
65+
mkdir -p /etc/apt/keyrings/
66+
mkdir -p /etc/apt/sources.list.d/
67+
cp .github/tools/githubcli-archive-keyring.gpg /etc/apt/keyrings/githubcli-archive-keyring.gpg
68+
cp .github/tools/github-cli.sources /etc/apt/sources.list.d/github-cli.sources
69+
apt update
70+
apt install -y gh jq
5771
- name: Upload to GitHub Releases
5872
run: |
5973
set -x

0 commit comments

Comments
 (0)