Skip to content

Commit f3e70ad

Browse files
committed
Initial commit
0 parents  commit f3e70ad

File tree

8 files changed

+852
-0
lines changed

8 files changed

+852
-0
lines changed

.github/workflows/build.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: build.yml
2+
on:
3+
push:
4+
pull_request:
5+
workflow_dispatch:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v4
13+
with:
14+
submodules: recursive
15+
16+
- name: Build AppImage
17+
run: |
18+
. "$HOME/.cargo/env"
19+
bash ci/build-appimage.sh
20+
21+
- name: Archive artifacts
22+
uses: actions/upload-artifact@v4
23+
with:
24+
path: linuxdeploy-plugin-polyfill_glibc*.AppImage*
25+
26+
upload:
27+
name: Create release and upload artifacts
28+
needs:
29+
- build
30+
runs-on: ubuntu-latest
31+
steps:
32+
- name: Download artifacts
33+
uses: actions/download-artifact@v4
34+
- name: Inspect directory after downloading artifacts
35+
run: ls -alFR
36+
- name: Create release and upload artifacts
37+
env:
38+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39+
run: |
40+
wget -q https://github.com/TheAssassin/pyuploadtool/releases/download/continuous/pyuploadtool-x86_64.AppImage
41+
chmod +x pyuploadtool-x86_64.AppImage
42+
./pyuploadtool-x86_64.AppImage ./**/linuxdeploy-plugin-polyfill_glibc*.AppImage*

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/target
2+
*.AppImage*
3+
polyfill-glibc/

0 commit comments

Comments
 (0)