Skip to content

Commit

Permalink
Fixing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
akasaka committed Oct 27, 2024
1 parent d4eb5d4 commit dd19f30
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,18 @@ jobs:
build-everything:
runs-on: ubuntu-latest
name: Build All Binaries
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- name: Set up Git identity
run: |
git config --local user.name "Leønid Yakubovič"
git config --local user.email "[email protected]"
- name: Prepare environment
uses: ./.github/actions/prepare_pio
- name: Download AquesTalk
Expand Down Expand Up @@ -54,5 +60,12 @@ jobs:
- name: Add FVUDATA stuff into git and push
run: |
git add -f ./webroot/fvudata/*
git commit -m "Publish firmwares at $(git rev-parse --short HEAD)"
git push --force -u origin pub
git commit -m "ci: Publish firmwares at $(git rev-parse --short HEAD)"
git push --force -u origin pub
# Thanks to yet another weird limitation of Github Actions, we need to duplicate this action here
# Remove when a better solution is found and this is triggered via web.yml correctly.
- name: Publish webroot via GitHub Pages
uses: rayluo/[email protected]
with:
source-directory: webroot
target-branch: gh-pages
Empty file modified helper/ci/create_fvudata.sh
100644 → 100755
Empty file.

0 comments on commit dd19f30

Please sign in to comment.