Skip to content

Fix edge case in SpaceFillingCurve class (#193) #2

Fix edge case in SpaceFillingCurve class (#193)

Fix edge case in SpaceFillingCurve class (#193) #2

Workflow file for this run

name: Release
on:
push:
branches: [main]
workflow_dispatch:
jobs:
release-check:
name: Check if version changed
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: main
- name: Use Node.js from nvmrc
uses: actions/setup-node@v4
with:
node-version-file: 'js/.nvmrc'
- name: Check if version has been updated
id: check
working-directory: js
uses: EndBug/version-check@v2

Check failure on line 29 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 29, Col: 9): Unexpected value 'uses' .github/workflows/release.yml (Line: 26, Col: 9): Required property is missing: run
outputs:
publish: ${{ steps.check.outputs.changed }}
release:
name: Release
needs: release-check
if: ${{ needs.release-check.outputs.publish == 'true' }}
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: main
- name: Use Node.js from nvmrc
uses: actions/setup-node@v4
with:
node-version-file: 'js/.nvmrc'
registry-url: 'https://registry.npmjs.org'
- name: Get version
id: package-version
working-directory: js
uses: martinbeentjes/[email protected]
- name: Install
working-directory: js
run: npm ci
- name: Prepare release
id: prepare_release
working-directory: js
run: |
RELEASE_TYPE=$(node -e "console.log(require('semver').prerelease('${{ steps.package-version.outputs.current-version }}') ? 'prerelease' : 'regular')")
echo "release_type=$RELEASE_TYPE" >> $GITHUB_OUTPUT
- name: Build
working-directory: js
run: |
npm run build
- name: Publish NPM package (regular)
working-directory: js
if: ${{ steps.prepare_release.outputs.release_type == 'regular' }}
run: |
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_ORG_TOKEN }}
- name: Publish NPM package (pre-release)
working-directory: js
if: ${{ steps.prepare_release.outputs.release_type == 'prerelease' }}
run: |
npm publish --tag next
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_ORG_TOKEN }}
- name: Tag commit and push
working-directory: js
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
custom_tag: ${{ steps.package-version.outputs.current-version }}
- name: Create Archive
working-directory: js
run: |
zip -r dist dist
- name: Create GitHub Release (regular)
working-directory: js
id: create_regular_release
if: ${{ steps.prepare_release.outputs.release_type == 'regular' }}
uses: ncipollo/release-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: ${{ steps.tag_version.outputs.new_tag }}
artifacts: "dist.zip"
artifactContentType: "application/zip"
allowUpdates: true
draft: false
prerelease: false
- name: Create GitHub Release (prerelease)
working-directory: js
id: create_prerelease
if: ${{ steps.prepare_release.outputs.release_type == 'prerelease' }}
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.tag_version.outputs.new_tag }}
release_name: ${{ steps.tag_version.outputs.new_tag }}
draft: false
prerelease: true
- name: Upload GitHub Release Assets (prerelease)
working-directory: js
uses: actions/upload-release-asset@v1
if: ${{ steps.prepare_release.outputs.release_type == 'prerelease' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_prerelease.outputs.upload_url }}
asset_path: ./dist.zip
asset_name: dist.zip
asset_content_type: application/zip