0.1.0: Initial development release #2
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: Bundle | |
on: | |
# Run when a release is published | |
release: | |
types: | |
- published | |
jobs: | |
bundle: | |
name: Bundle | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v3 | |
- name: Install Roc | |
uses: hasnep/setup-roc@main | |
with: | |
roc-version: nightly | |
- name: Bundle and release the library | |
uses: hasnep/[email protected] | |
with: | |
library: src/main.roc | |
token: ${{ github.token }} |