nmreval/.gitea/workflows/build-appimage.yaml

41 lines
1.8 KiB
YAML
Raw Normal View History

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: |
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 14:47:53 +00:00
echo "SHA_SHORT=${GITEA_SHA:7}" >> "$GITEA_ENV"
2023-12-06 14:52:27 +00:00
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 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:
GPG_KEYGRIP: ${{ vars.GPG_KEYGRIP }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
2023-12-06 14:45:19 +00:00
GO_PIPELINE_LABEL: ${{ env.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 14:45:19 +00:00
GO_PIPELINE_LABEL: ${{ env.YEAR }}.${{ gitea.run_number }}_${{ env.SHA_SHORT }}
UPLOAD_TOKEN: ${{ secrets.GITEA_TOKEN }}
UPLOAD_USER: ${{ vars.GITEA_USER }}
2023-12-06 13:13:57 +00:00
- run: echo "🍏 This job's status is ${{ job.status }}."