Skip to content

fixes [#11]: updates keymap-render file to new format #12

fixes [#11]: updates keymap-render file to new format

fixes [#11]: updates keymap-render file to new format #12

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: apt update && apt install -y dpkg-dev build-essential debhelper plymouth plymouth-label plymouth-themes gettext meson
- name: Build debian package
run: |
dpkg-buildpackage --no-sign
mv ../plymouth-theme-vanilla-bgrt*.deb ../plymouth-theme-vanilla-bgrt.deb
mv ../plymouth-theme-vanilla-logo*.deb ../plymouth-theme-vanilla-logo.deb
mv ../plymouth-theme-vanilla-text*.deb ../plymouth-theme-vanilla-text.deb
- name: Calculate and Save Checksums
run: |
sha256sum /__w/plymouth-theme-vanilla/plymouth-theme-vanilla-bgrt.deb >> checksums.txt
sha256sum /__w/plymouth-theme-vanilla/plymouth-theme-vanilla-logo.deb >> checksums.txt
sha256sum /__w/plymouth-theme-vanilla/plymouth-theme-vanilla-text.deb >> checksums.txt
- uses: actions/upload-artifact@v4
with:
name: plymouth-theme-vanilla
path: |
/__w/plymouth-theme-vanilla/plymouth-theme-vanilla-bgrt.deb
/__w/plymouth-theme-vanilla/plymouth-theme-vanilla-logo.deb
/__w/plymouth-theme-vanilla/plymouth-theme-vanilla-text.deb
checksums.txt
- 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/plymouth-theme-vanilla/plymouth-theme-vanilla-bgrt.deb
/__w/plymouth-theme-vanilla/plymouth-theme-vanilla-logo.deb
/__w/plymouth-theme-vanilla/plymouth-theme-vanilla-text.deb
checksums.txt