permissions seem dumb, job should run on push to main
This commit is contained in:
parent
c394cb5300
commit
97dee98bb9
1 changed files with 7 additions and 1 deletions
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
|
|
@ -2,10 +2,16 @@ name: Build AppImage, Windows EXE and Publish Release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
tags:
|
tags:
|
||||||
- 'v*.*.*'
|
- 'v*.*.*'
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
releases: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-linux:
|
build-linux:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
@ -51,7 +57,7 @@ jobs:
|
||||||
EOF
|
EOF
|
||||||
# Download a placeholder icon and save it as appicon.png in AppDir
|
# Download a placeholder icon and save it as appicon.png in AppDir
|
||||||
wget -q -O AppDir/appicon.png https://placehold.co/256
|
wget -q -O AppDir/appicon.png https://placehold.co/256
|
||||||
|
|
||||||
- name: Install FUSE library
|
- name: Install FUSE library
|
||||||
run: sudo apt-get update && sudo apt-get install -y libfuse2
|
run: sudo apt-get update && sudo apt-get install -y libfuse2
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue