Skip to content

cleanup: update files #6

cleanup: update files

cleanup: update files #6

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/vanilla-os/pico:main
volumes:
- /proc:/proc
- /:/run/host
options: --privileged -it
steps:
- uses: actions/checkout@v4
- name: De-bloat stock image
run: |
rm -r /run/host/usr/share/dotnet
rm -r /run/host${{ runner.tool_cache }}
- name: Install needed packages
run: |
export DEBIAN_FRONTEND=noninteractive
apt update
apt install -y build-essential debhelper-compat dh-sequence-gnome libglib2.0-dev meson
- name: Build debian package
run: |
dpkg-buildpackage --no-sign
mv ../*.deb ../vanilla-backgrounds.deb
- name: Calculate and Save Checksums
run: |
sha256sum /__w/vanilla-backgrounds/vanilla-backgrounds.deb >> checksums.txt
- uses: actions/upload-artifact@v4
with:
name: vanilla-backgrounds
path: |
checksums.txt
/__w/vanilla-backgrounds/vanilla-backgrounds.deb
- uses: softprops/action-gh-release@v2
if: github.ref == 'refs/heads/main'
with:
token: "${{ secrets.GITHUB_TOKEN }}"
tag_name: "continuous"
prerelease: true
name: "Continuous Build"
files: |
/__w/vanilla-backgrounds/vanilla-backgrounds.deb
checksums.txt