Skip to content

Commit c3fcae5

Browse files
committed
Merge branch 'master' of github.com:AppImageCrafters/appimage-manager
2 parents cc8b2e0 + 4448a5f commit c3fcae5

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.github/workflows/go-continuous.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
build:
1010
name: Build
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-20.04
1212
steps:
1313

1414
- name: Set up Go 1.x

.github/workflows/go.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
build:
1212
name: Build
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-20.04
1414
steps:
1515

1616
- name: Set up Go 1.x
@@ -37,6 +37,8 @@ jobs:
3737
id: pack
3838
with:
3939
recipe: 'appimage-builder.yml'
40+
env:
41+
APPIMAGE_CLI_TOOL_VERSION: 0.1.4
4042

4143
- name: Upload a Build Artifact
4244
uses: actions/upload-artifact@v2

.gitlab-ci.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,17 @@ distro-pack:
2020
stage: pack
2121
variables:
2222
DEBIAN_FRONTEND: noninteractive
23+
APPIMAGE_CLI_TOOL_VERSION: 0.1.4
2324
dependencies:
2425
- build
2526
before_script:
2627
- apt-get update -y
27-
- apt-get install -y checkinstall alien
28+
- apt-get install -y checkinstall alien git
2829
script:
2930
# Pack into an AppImage
3031
- appimage-builder --skip-test --recipe=appimage-builder.yml
3132
# Pack AppImage into deb
32-
- checkinstall --install=no -y --type=debian --pkgname=appimage-cli-tool --pkgversion=0.1.3 --backup=no --maintainer=contact@azubieta.net --pkglicense=MIT
33+
- checkinstall --install=no -y --type=debian --pkgname=appimage-cli-tool --pkgversion=${APPIMAGE_CLI_TOOL_VERSION} --backup=no --maintainer=contact@azubieta.net --pkglicense=MIT
3334
# Transform deb into rpm
3435
- alien --to-rpm appimage-cli-tool*.deb
3536
artifacts:

appimage-builder.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ AppDir:
1212
id: org.appimage-crafters.appimage-cli-tool
1313
name: appimage-cli-tool
1414
icon: appimage-cli-tool
15-
version: 0.1.2
15+
version: !ENV ${APPIMAGE_CLI_TOOL_VERSION}
1616
exec: bin/appimage-cli-tool
1717
exec_args: $@
1818

0 commit comments

Comments
 (0)