Release #8
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: Release | |
on: | |
#push: | |
# branches: | |
# - main | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
env: | |
FORCE_COLOR: true | |
jobs: | |
changelog: | |
name: Changelog PR or Release | |
if: ${{ github.repository_owner == 'motortruck1221' }} | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install other silly deps | |
run: sudo apt update && sudo apt install inotify-tools binaryen wget make gcc uuid-runtime jq | |
- name: Setup Rust | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: nightly | |
target: wasm32-unknown-unknown | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: oracle | |
java-version: 21 | |
- name: Setup PNPM | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 9.9.0 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: "pnpm" | |
- name: Make anura | |
run: make | |
- name: Install dependencies | |
run: pnpm install --no-frozen-lockfile | |
- name: Build Packages | |
run: pnpm run build | |
#- name: Create Release Pull Request or Publish | |
#id: changesets | |
#uses: changesets/action@v1 | |
#with: | |
# version: pnpm run version | |
# publish: pnpm exec changeset publish | |
# commit: "[ci] release" | |
# title: "[ci] release" | |
#env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |