fix: ignore middleware rewrite when redirecting #6
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: prerelease | |
on: | |
push: | |
branches: | |
# releases/<tag>/<version> | |
# releases/alpha.1/5.0.0 - will result in 5.0.0-alpha.1 | |
- releases/*/* | |
jobs: | |
prerelease: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: npm | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install core dependencies | |
run: npm ci --no-audit | |
- name: Install Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
# Should match the `DENO_VERSION_RANGE` from https://github.com/netlify/edge-bundler/blob/e55f825bd985d3c92e21d1b765d71e70d5628fba/node/bridge.ts#L17 | |
deno-version: v1.37.0 | |
- name: Extract tag and version | |
id: extract | |
run: |- | |
ref=${{ github.ref }} | |
branch=${ref:11} | |
tag_version=${branch:9} | |
tag=${tag_version%/*} | |
version=${tag_version##*/} | |
echo "tag=${tag}" >> $GITHUB_OUTPUT | |
echo "version=${version}" >> $GITHUB_OUTPUT | |
- name: Log versions | |
run: |- | |
echo tag=${{ steps.extract.outputs.tag }} | |
echo version=${{ steps.extract.outputs.version }} | |
- name: Setup git user | |
run: git config --global user.name github-actions | |
- name: Setup git email | |
run: git config --global user.email [email protected] | |
- name: Run npm version | |
run: | |
npm version ${{ steps.extract.outputs.version }}-${{ steps.extract.outputs.tag }} | |
--allow-same-version | |
- name: Push changes | |
run: git push --follow-tags | |
- name: build | |
run: npm run build | |
- name: Run npm publish | |
run: npm publish --tag=${{ steps.extract.outputs.tag }} | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} |