Merge pull request #87 from SSW-SCIENTIFIC/fix/fix-broken-build-and-a… #24
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
name: Build | |
on: [push] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
# Check out the source repository to standard location | |
- name: Check out the repository | |
uses: actions/checkout@v2 | |
# Build a container in the root of our repository and make it run | |
- name: Execute build | |
uses: ./ | |
# Upload built results as an artifact | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v1 | |
with: | |
name: Cica-nightly-${{ github.sha }} | |
path: dist |