π fix: extensions not loading with code and file (#129) #30
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
# Automatically build the default branch then release with tag "aurora" and marked as pre-release. | |
name: Build and Release | |
on: | |
push: | |
branches: | |
- refactor | |
jobs: | |
validate: | |
name: Validating Code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
- name: Install | |
run: yarn install --frozen-lockfile | |
- name: Build | |
run: yarn run build | |
- name: Upload Canary Userscript | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Canary Userscript | |
path: dist/eureka.user.js | |
- name: Create Nightly Release | |
uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "aurora" | |
prerelease: true | |
title: "Aurora" | |
files: | | |
dist/eureka.user.js |