Chisel v5.2.0 #1
Workflow file for this run
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: Generate Chisel Scala CLI Example | |
on: | |
release: | |
types: [created] | |
workflow_dispatch: | |
jobs: | |
generate_scala_cli_example: | |
name: Generate Scala CLI Example | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# Need to fetch full history for deriving version | |
with: | |
fetch-depth: 0 | |
- name: Build and Test Scala-CLI Example | |
uses: ./.github/workflows/build-scala-cli-example | |
- name: Upload Example | |
uses: actions/upload-artifact@v3 | |
with: | |
name: chisel-example.scala | |
path: chisel-example.scala | |
retention-days: 7 | |
- name: Upload To Release Page | |
if: github.event_name == 'release' | |
uses: softprops/[email protected] | |
with: | |
files: chisel-example.scala | |