Skip to content

Commit

Permalink
CD; try 1
Browse files Browse the repository at this point in the history
  • Loading branch information
blued-gear authored Oct 18, 2024
1 parent abcf0f7 commit 260190a
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build_packages.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build AppImages

on:
push:
branches: [ "cd" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build-x86_64:
runs-on:
- ubuntu-latest
- x64
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: checkout
uses: actions/checkout@v4

- name: install dependencies
run: |
apt-get update
apt-get install -y wget openjdk-21-jdk-headless nodejs fuse
wget -qO- https://get.pnpm.io/install.sh | sh -
- name: run build
run: |
cd $GITHUB_WORKSPACE/Appimage
./build.sh

0 comments on commit 260190a

Please sign in to comment.