Getting ready to move out of heavy alpha development. Created ci/cd
This commit is contained in:
parent
ceaa66fb07
commit
75f5d2fc05
56 changed files with 1122 additions and 3133 deletions
42
.github/workflows/build.yml
vendored
Normal file
42
.github/workflows/build.yml
vendored
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
name: Build and Upload apt-ostree Debian Package
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
release:
|
||||
types: [ published ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-24.04
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt install -y build-essential devscripts debhelper dh-cargo cargo rustc pkg-config
|
||||
sudo apt install -y libostree-dev libglib2.0-dev libcurl4-gnutls-dev libssl-dev libsystemd-dev libmount-dev libselinux1-dev
|
||||
|
||||
- name: Build package
|
||||
run: |
|
||||
./build.sh
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: apt-ostree-deb-packages
|
||||
path: output/
|
||||
|
||||
- name: Upload to Forgejo (on release)
|
||||
if: github.event_name == 'release'
|
||||
run: |
|
||||
# Upload to Forgejo Debian repository
|
||||
# This would use your Forgejo API token
|
||||
echo "Uploading to Forgejo repository..."
|
||||
# curl -X POST -H "Authorization: token ${{ secrets.FORGEJO_TOKEN }}" \
|
||||
# -F "package=@output/apt-ostree_*.deb" \
|
||||
# https://git.raines.xyz/api/packages/robojerk/debian/upload
|
||||
Loading…
Add table
Add a link
Reference in a new issue