This repository has been archived by the owner on Feb 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Port pojntfx/bofied#8 and pojntfx/bofied#7
- Loading branch information
Showing
4 changed files
with
39 additions
and
10 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
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 |
---|---|---|
|
@@ -23,18 +23,27 @@ jobs: | |
run: hydrun -a amd64,arm64,arm/v7 ./Hydrunfile | ||
- name: Build frontend with hydrun | ||
run: hydrun "./Hydrunfile frontend" | ||
- name: Publish to GitHub releases | ||
- name: Publish pre-release to GitHub releases | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
uses: marvinpinto/action-automatic-releases@latest | ||
with: | ||
repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
automatic_release_tag: "latest" | ||
automatic_release_tag: unstable | ||
prerelease: true | ||
files: | | ||
out/release/liwasc-backend/* | ||
out/release/liwasc-frontend/* | ||
- name: Publish release to GitHub releases | ||
if: startsWith(github.ref, 'refs/tags/v') | ||
uses: marvinpinto/action-automatic-releases@latest | ||
with: | ||
repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
prerelease: false | ||
files: | | ||
out/release/liwasc-backend/* | ||
out/release/liwasc-frontend/* | ||
- name: Publish to GitHub pages | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
- name: Publish release to GitHub pages | ||
if: startsWith(github.ref, 'refs/tags/v') | ||
uses: JamesIves/[email protected] | ||
with: | ||
branch: gh-pages | ||
|
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