Skip to content

Commit

Permalink
Add a build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Mika Jylhä committed Nov 22, 2022
1 parent 12544f9 commit b942da5
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
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

0 comments on commit b942da5

Please sign in to comment.