Skip to content

Fix small issue with the file head endpoint #19

Fix small issue with the file head endpoint

Fix small issue with the file head endpoint #19

Workflow file for this run

name: Release & Publish
on:
push:
tags:
- 'v*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .npmrc file to publish to npm
uses: actions/setup-node@v1
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Set RELEASE_VERSION
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Apply new version
run: node worker/config/preparePublish.js
- name: Install worker modules
run: cd worker && npm install
- name: Build worker
run: cd worker && npm run build
- name: Publish to npm
run: cd worker && npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}