-
Notifications
You must be signed in to change notification settings - Fork 1
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
Mika Jylhä
committed
Nov 22, 2022
1 parent
12544f9
commit b942da5
Showing
1 changed file
with
27 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# This workflow will setup IG publisher, run sushi | ||
# It should also publish results (TBD) | ||
|
||
name: Node.js CI | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "**" ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup IG publisher | ||
run: docker-compose run runner bash -c "cd /workdir && ./_updatePublisher.sh --yes" | ||
- name: Generate | ||
run: docker-compose run runner bash -c "cd /workdir && ./_genonce.sh" | ||
- name: Publish results (TBD) | ||
run: echo "Generation complete. Ready to publish follwing dirs:" | ||
run: ls fsh-generated | ||
run: ls output | ||
|