mirror of
https://github.com/multipleof4/appsune.git
synced 2026-01-13 23:57:56 +00:00
26 lines
806 B
YAML
26 lines
806 B
YAML
name: bubblewrap-init-and-commit
|
|
on:
|
|
workflow_dispatch:
|
|
permissions: write-all
|
|
jobs:
|
|
build-push:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '22'
|
|
- name: Install Bubblewrap
|
|
run: npm install -g @bubblewrap/cli
|
|
- name: Run bubblewrap init
|
|
run: |
|
|
yes Y | bubblewrap init --manifest="https://sune.planetrenox.com/manifest.webmanifest" --packageId="com.planetrenox.sune" --name="Sune"
|
|
- run: |
|
|
git config user.name "github-actions"
|
|
git config user.email "github-actions@github.com"
|
|
git add .
|
|
git commit -m "This build was committed by a bot."
|
|
git push
|