-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
akasaka
committed
Oct 27, 2024
1 parent
d4eb5d4
commit 1a73086
Showing
5 changed files
with
20 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -54,5 +60,10 @@ 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 run the upcoming workflow manually | ||
# https://github.com/orgs/community/discussions/25702 | ||
# Remove when a better solution is found | ||
- name: Publish webroot | ||
run: gh workflow run web.yml --ref pub |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters