Create Desktop Snapshot #446
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Desktop Snapshot | |
on: | |
workflow_dispatch: | |
inputs: | |
debug_enabled: | |
type: boolean | |
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' | |
required: false | |
default: false | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: '30 18 * * *' | |
jobs: | |
build: | |
if: github.repository_owner == 'Card-Forge' | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
deployments: write | |
packages: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: 'maven' | |
server-id: cardforge-repo | |
server-username: ${{ secrets.FTP_USERNAME }} | |
server-password: ${{ secrets.FTP_PASSWORD }} | |
settings-path: ${{ github.workspace }} # location for the settings.xml file | |
- name: Install virtual framebuffer (if not available) to allow running GUI on a headless server | |
run: command -v Xvfb >/dev/null 2>&1 || { sudo apt update && sudo apt install -y xvfb; } | |
- name: Configure Git User | |
run: | | |
git config user.email "[email protected]" | |
git config user.name "GitHub Actions" | |
- name: Build/Install Snapshot | |
run: | | |
export DISPLAY=":1" | |
Xvfb :1 -screen 0 800x600x8 & | |
mvn -U -B clean -P windows-linux install -T 1C -Dcardforge-repo.username=${{ secrets.FTP_USERNAME }} -Dcardforge-repo.password=${{ secrets.FTP_PASSWORD }} | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
- name: Setup tmate session | |
uses: mxschmitt/action-tmate@v3 | |
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} | |
- name: Rename before upload | |
run: | | |
mkdir izpack | |
# move bz2 and jar from work dir to izpack dir | |
mv /home/runner/work/forge/forge/forge-installer/*/*.{bz2,jar} izpack/ | |
# move desktop build.txt to izpack | |
mv /home/runner/work/forge/forge/forge-gui-desktop/target/classes/build.txt izpack/ | |
cd izpack | |
d=$(date +%m.%d) | |
# rename files and append date | |
for file in *.jar; do | |
bname="${file%.*}" | |
echo "file renamed to ${bname}-${d}.jar" | |
mv "${bname}.jar" "${bname}-${d}.jar" | |
done | |
for file in *.bz2; do | |
# remove .bz2 | |
fname="${file%.*}" | |
# remove .tar | |
bname="${fname%.*}" | |
echo "file renamed to ${bname}-${d}.tar.bz2" | |
mv "${fname}.bz2" "${bname}-${d}.tar.bz2" | |
done | |
- name: 📂 Sync files | |
uses: SamKirkland/[email protected] | |
with: | |
server: ftp.cardforge.org | |
username: ${{ secrets.FTP_USERNAME }} | |
password: ${{ secrets.FTP_PASSWORD }} | |
local-dir: izpack/ | |
server-dir: downloads/dailysnapshots/ | |
exclude: | | |
*.pom | |
*.repositories | |
*.xml | |
- name: Send failure notification to Discord | |
if: failure() # This step runs only if the job fails | |
run: | | |
curl -X POST -H "Content-Type: application/json" \ | |
-d "{\"content\": \"🔴 Desktop Snapshot Build Failed in branch: \`${{ github.ref_name }}\` by \`${{ github.actor }}\`.\nCheck logs: ${{ github.run_url }}\"}" \ | |
${{ secrets.DISCORD_AUTOMATION_WEBHOOK }} |