-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from imclerran/main
Merge main updates into add-date-time-support branch
- Loading branch information
Showing
2 changed files
with
36 additions
and
4 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,26 @@ | ||
name: Bundle Release | ||
|
||
on: | ||
# Run when a release is published | ||
release: | ||
types: | ||
- published | ||
|
||
jobs: | ||
bundle-and-release: | ||
name: Bundle and release library | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write # Used to upload the bundled library | ||
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/bundle-roc-library@main | ||
with: | ||
library: package/main.roc # Path to the library's entrypoint | ||
token: ${{ github.token }} |
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