Add experimental gear inventory page #48
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
# Release a new build on push to main. | |
# This will also get triggered after each PR is merged against main | |
name: Release | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
release: | |
# do all the steps from the CI workflow | |
# but also do the release step | |
uses: ./.github/workflows/yarn.yml | |
with: | |
release: true |