0.5.4 #26
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: Publish | |
on: | |
push: | |
tags: | |
- "v*" | |
env: | |
CARGO_INCREMENTAL: 0 | |
CARGO_TERM_COLOR: "always" | |
RUST_LOG: "off" | |
jobs: | |
publish-npm: | |
if: startsWith(github.ref, 'refs/tags/v') | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install wasm-pack | |
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
- name: Build wasm | |
run: ./crates/ruff_fmt/scripts/build.sh | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".node-version" | |
registry-url: "https://registry.npmjs.org" | |
- run: | | |
cd crates/ruff_fmt/pkg | |
npm publish --provenance | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
publish-github: | |
if: startsWith(github.ref, 'refs/tags/v') | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install wasm-pack | |
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
- name: Build wasm | |
run: ./crates/ruff_fmt/scripts/build.sh | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".node-version" | |
registry-url: "https://npm.pkg.github.com" | |
- run: | | |
cd crates/ruff_fmt/pkg | |
npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
publish-github-release: | |
if: startsWith(github.ref, 'refs/tags/v') | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install wasm-pack | |
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
- name: Build wasm | |
run: | | |
# build for JS API | |
./crates/ruff_fmt/scripts/build.sh | |
(cd crates/ruff_fmt/pkg && npm pack) | |
# build for dprint plugin | |
cargo build --release --target=wasm32-unknown-unknown -p ruff_fmt_dprint | |
- name: Get tag version | |
id: get_tag_version | |
run: echo "TAG_VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT | |
- name: Pre-release | |
run: | | |
sed -i 's/ruff_fmt\/0.0.0/ruff_fmt\/${{ steps.get_tag_version.outputs.TAG_VERSION }}/' crates/ruff_fmt_dprint/schema.json | |
(cd target/wasm32-unknown-unknown/release/ && mv ruff_fmt_dprint.wasm plugin.wasm) | |
- name: Release | |
uses: softprops/action-gh-release@975c1b265e11dd76618af1c374e7981f9a6ff44a | |
with: | |
files: | | |
crates/ruff_fmt/pkg/ruff_fmt_bg.wasm | |
crates/ruff_fmt/pkg/wasm-fmt-ruff_fmt-*.tgz | |
crates/ruff_fmt_dprint/schema.json | |
target/wasm32-unknown-unknown/release/plugin.wasm |