Skip to content

Commit f7b44ef

Browse files
committed
Fix GitHub action.
Also update version in changelog.
1 parent a439e9f commit f7b44ef

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ jobs:
201201
- uses: actions/checkout@v5
202202

203203
- name: Install dependencies
204+
run: |
204205
sudo apt-get update
205206
sudo apt-get install -y build-essential debhelper golang git
206207
@@ -212,14 +213,14 @@ jobs:
212213
uses: actions/upload-artifact@v5
213214
with:
214215
name: jag-deb
215-
path: ../jaguar_*.deb
216+
path: jaguar_*.deb
216217

217218
- name: Upload Deb release file
218219
if: github.event_name == 'release'
219220
uses: svenstaro/upload-release-action@v2
220221
with:
221222
repo_token: ${{ secrets.GITHUB_TOKEN }}
222-
file: ../jag_*.deb
223+
file: jaguar_*.deb
223224
file_glob: true
224225
tag: ${{ github.event.release.tag_name }}
225226
overwrite: true

cmd/jag/main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import (
1313
)
1414

1515
var (
16+
// When updating the version here, also update it in debian/changelog.
1617
version = "v1.58.0"
1718
sdkVersion = "v2.0.0-alpha.189"
1819
)

debian/changelog

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
jaguar (1.0.0-1) unstable; urgency=medium
1+
jaguar (1.58.0-1) unstable; urgency=medium
22

3-
* Initial release.
3+
* Initial release of the package.
44

55
-- Toit contributors <[email protected]> Fri, 28 Nov 2025 19:59:00 -0500

0 commit comments

Comments
 (0)