File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 23
23
- name : Build application for linux
24
24
run : |
25
25
# ninja-build
26
+ sudo apt update
26
27
sudo apt install -y pkg-config libgtk-3-dev liblzma-dev libstdc++-12-dev --no-install-recommends
27
28
flutter build linux --release
28
29
cd flatpak/scripts
Original file line number Diff line number Diff line change 16
16
uses : actions/checkout@v4
17
17
with :
18
18
fetch-depth : 0 # needed to push changes
19
+ token : ${{ secrets.GITHUB_TOKEN }}
19
20
20
21
- name : Common flutter setup
21
22
uses : ./.github/actions/flutter-common
@@ -38,11 +39,11 @@ jobs:
38
39
NEXT_BUILD=$(( (CURRENT_BUILD / 10 + 1) * 10 ))
39
40
flutter pub run cider version ${{ inputs.app_version }}+${NEXT_BUILD}
40
41
41
- - name : Commit pubspec
42
+ - name : Tag release and commit pubspec
42
43
run : |
43
44
git config user.name Github-Actions
44
45
git config user.email [email protected]
45
46
git add pubspec.yaml
46
47
git tag ${{ inputs.app_version }}
47
48
git commit -m "Bump version to $( flutter pub run cider version )"
48
- git push origin HEAD:master
49
+ git push origin HEAD:master --tags
You can’t perform that action at this time.
0 commit comments