Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-hc authored Mar 22, 2024
1 parent c54a309 commit bb7deef
Show file tree
Hide file tree
Showing 3 changed files with 141 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/baobab3-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: baobab3 Appimage
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true

on:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: build
run: |
sudo apt update && sudo apt install libfuse2
wget https://raw.githubusercontent.com/ivan-hc/Database-of-pkg2appimaged-packages/main/baobab3
chmod a+x ./baobab3
./baobab3
mkdir dist
mv *AppImage dist/
- name: Upload artifact
uses: actions/upload-artifact@v1.0.0
with:
name: baobab3-x86_64.AppImage
path: 'dist'

release:
needs: [build]
runs-on: ubuntu-latest

steps:
- uses: actions/download-artifact@v1
with:
name: baobab3-x86_64.AppImage

- name: release
uses: marvinpinto/action-automatic-releases@latest
with:
title: baobab3
automatic_release_tag: baobab3
prerelease: false
draft: false
files: |
baobab3-x86_64.AppImage
repo_token: ${{ secrets.GITHUB_TOKEN }}
47 changes: 47 additions & 0 deletions .github/workflows/gnome-system-monitor3.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: gnome-system-monitor3 Appimage
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true

on:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: build
run: |
sudo apt update && sudo apt install libfuse2
wget https://raw.githubusercontent.com/ivan-hc/Database-of-pkg2appimaged-packages/main/gnome-system-monitor3
chmod a+x ./gnome-system-monitor3
./gnome-system-monitor3
mkdir dist
mv *AppImage dist/
- name: Upload artifact
uses: actions/upload-artifact@v1.0.0
with:
name: gnome-system-monitor3-x86_64.AppImage
path: 'dist'

release:
needs: [build]
runs-on: ubuntu-latest

steps:
- uses: actions/download-artifact@v1
with:
name: gnome-system-monitor3-x86_64.AppImage

- name: release
uses: marvinpinto/action-automatic-releases@latest
with:
title: gnome-system-monitor3
automatic_release_tag: gnome-system-monitor3
prerelease: false
draft: false
files: |
gnome-system-monitor3-x86_64.AppImage
repo_token: ${{ secrets.GITHUB_TOKEN }}
47 changes: 47 additions & 0 deletions .github/workflows/mate-system-monitor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: mate-system-monitor Appimage
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true

on:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: build
run: |
sudo apt update && sudo apt install libfuse2
wget https://raw.githubusercontent.com/ivan-hc/Database-of-pkg2appimaged-packages/main/mate-system-monitor
chmod a+x ./mate-system-monitor
./mate-system-monitor
mkdir dist
mv *AppImage dist/
- name: Upload artifact
uses: actions/upload-artifact@v1.0.0
with:
name: mate-system-monitor-x86_64.AppImage
path: 'dist'

release:
needs: [build]
runs-on: ubuntu-latest

steps:
- uses: actions/download-artifact@v1
with:
name: mate-system-monitor-x86_64.AppImage

- name: release
uses: marvinpinto/action-automatic-releases@latest
with:
title: mate-system-monitor
automatic_release_tag: mate-system-monitor
prerelease: false
draft: false
files: |
mate-system-monitor-x86_64.AppImage
repo_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit bb7deef

Please sign in to comment.