2023-12-06 13:13:57 +00:00
|
|
|
name: Build AppImage
|
|
|
|
run-name: ${{ gitea.actor }} is building THE AppImage 🚀
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Explore-Gitea-Actions:
|
|
|
|
runs-on: bullseye
|
|
|
|
steps:
|
|
|
|
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
|
|
|
|
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
|
|
|
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
|
|
|
- name: Check out repository code
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
|
|
|
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
2023-12-06 13:29:36 +00:00
|
|
|
- run: |
|
2023-12-06 13:30:48 +00:00
|
|
|
apt-get -y update
|
2023-12-06 14:48:45 +00:00
|
|
|
apt-get -y install python3-yaml python3-requests bash
|
2023-12-06 14:45:19 +00:00
|
|
|
- name: Declare some variables
|
2023-12-06 14:48:45 +00:00
|
|
|
shell: bash
|
2023-12-06 14:45:19 +00:00
|
|
|
run: |
|
2023-12-06 15:33:22 +00:00
|
|
|
echo "SHA_SHORT=$(git rev-parse --short HEAD)" >> GITEA_ENV
|
|
|
|
echo "YEAR=$(date +%Y)" >> GITEA_ENV
|
2023-12-06 14:28:26 +00:00
|
|
|
- name: Build AppImage
|
2023-12-06 13:42:51 +00:00
|
|
|
run: |
|
2023-12-06 15:21:44 +00:00
|
|
|
echo $GO_PIPELINE_LABEL
|
2023-12-06 13:53:07 +00:00
|
|
|
eval $(gpg-agent --daemon --allow-preset-passphrase --default-cache-ttl 1 --max-cache-ttl 7200)
|
2023-12-06 13:42:51 +00:00
|
|
|
/usr/lib/gnupg/gpg-preset-passphrase --preset --passphrase ${GPG_PASSPHRASE} ${GPG_KEYGRIP}
|
2023-12-06 14:28:26 +00:00
|
|
|
./tools/update_version.py
|
|
|
|
./tools/build.sh
|
2023-12-06 13:13:57 +00:00
|
|
|
env:
|
2023-12-06 13:47:16 +00:00
|
|
|
GPG_KEYGRIP: ${{ vars.GPG_KEYGRIP }}
|
|
|
|
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
|
2023-12-06 15:29:34 +00:00
|
|
|
GO_PIPELINE_LABEL: ${{ gitea.YEAR }}.${{ gitea.run_number }}_${{ env.SHA_SHORT }}
|
2023-12-06 13:13:57 +00:00
|
|
|
- name: Upload AppImage
|
2023-12-06 14:45:19 +00:00
|
|
|
run: ./tools/upload_gitea.sh
|
2023-12-06 13:13:57 +00:00
|
|
|
env:
|
2023-12-06 15:29:34 +00:00
|
|
|
GO_PIPELINE_LABEL: ${{ gitea.YEAR }}.${{ gitea.run_number }}_${{ gitea.SHA_SHORT }}
|
2023-12-06 14:45:19 +00:00
|
|
|
UPLOAD_TOKEN: ${{ secrets.GITEA_TOKEN }}
|
2023-12-06 13:47:16 +00:00
|
|
|
UPLOAD_USER: ${{ vars.GITEA_USER }}
|
2023-12-06 13:13:57 +00:00
|
|
|
- run: echo "🍏 This job's status is ${{ job.status }}."
|