Compare commits
7 Commits
debian/3.0
...
deb-auto/e
| Author | SHA1 | Date | |
|---|---|---|---|
| 4553f60150 | |||
| 077ad67c99 | |||
| 41277146a0 | |||
| 6c0578e466 | |||
| 15d5f9872c | |||
| 660ca7353d | |||
| 67e5e4de0f |
@@ -23,5 +23,39 @@ jobs:
|
||||
target/release/gt-tool-${{ github.ref_name }}-$(arch)
|
||||
env:
|
||||
RELEASE_KEY_GITEA: ${{ secrets.RELEASE_KEY_GITEA }}
|
||||
debian-release:
|
||||
name: Build and upload the Debian 12 package
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: debian:12
|
||||
steps:
|
||||
- name: Install Tools
|
||||
run: >
|
||||
apt-get update;
|
||||
apt-get install -y --no-install-recommends
|
||||
build-essential
|
||||
git
|
||||
git-buildpackage;
|
||||
- name: Checkout Repo (can't use actions/checkout@v4, no NodeJS)
|
||||
run: git clone ${{ github.event.repository.clone_url }}
|
||||
- name: Switch to Debian package branch
|
||||
run: git checkout deb
|
||||
working-directory: ./gt-tool
|
||||
- name: Install build-deps
|
||||
run: apt-get build-dep -y .
|
||||
working-directory: ./gt-tool
|
||||
- name: Build the package
|
||||
run: gbp buildpackage
|
||||
working-directory: ./gt-tool
|
||||
- name: Install the tool we just built
|
||||
run: dpkg -i gt-tool*.deb # TODO: Pick out the exact version instead of globbing
|
||||
- name: Upload the packaging parts
|
||||
run: > # The file globs are like that to avoid matching the gt-tool/ folder. I don't want that uploaded.
|
||||
gt-tool
|
||||
-u ${{ vars.DEST_GITEA }} -r ${{ vars.DEST_REPO }}
|
||||
upload-release
|
||||
"${{ github.ref_name }}"
|
||||
gt-tool-*
|
||||
gt-tool_*
|
||||
...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user