aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2024-05-21 00:36:01 +0300
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2024-05-21 00:36:01 +0300
commit9a95f9bef6cb22477c6e2fbc3f27a4e718a67fd8 (patch)
treeeb7cd5f3627ed0aeba0213d2e5d5e64980d5ee1b /.github
parentc487e5083418ab0b78688598ec2565c50922055e (diff)
downloadapplause2-9a95f9bef6cb22477c6e2fbc3f27a4e718a67fd8.tar.gz
nightly builds: normalized the artefact file names and updated README
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/nightly.yml11
1 files changed, 8 insertions, 3 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
index d9e96f7..b552324 100644
--- a/.github/workflows/nightly.yml
+++ b/.github/workflows/nightly.yml
@@ -15,6 +15,10 @@ jobs:
- name: Update Repositories
run: sudo apt-get update
+ - name: Install Build Dependencies
+ run: |
+ # NOTE: The version from LuaRocks is just as old.
+ sudo apt-get install -y rename lua-ldoc make
- name: Build AppImage
run: |
@@ -22,18 +26,19 @@ jobs:
"https://github.com/AppImageCommunity/pkg2appimage/releases/download/continuous/pkg2appimage--x86_64.AppImage"
chmod +x pkg2appimage.AppImage
./pkg2appimage.AppImage AppImage.yml
- chmod a+x out/*.AppImage
+ cd out
+ rename 's/.*\.glibc/Applause-nightly-glibc/' *.AppImage
+ chmod a+x *.AppImage
- name: Archive AppImage
uses: pyTooling/Actions/releaser@v1.0.5
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag: nightly
+ rm: true
files: out/*.AppImage
- name: Build Lua Documentation
run: |
- # NOTE: The version from LuaRocks is just as old.
- sudo apt-get install -y lua-ldoc make
make doc
- name: Publish Website
run: |