mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-21 15:36:50 -05:00
* sync server as npm package * yarn lock * workflow * fix yml * fix script * named job better * imagine trusting an ai * pack and publish separately * v4 instead of v3 upload * dependencies * identifying the right package for uplaod * updating references * what * i see * here comes the glory * aaaand here it comes * perms * hmm * try changing scope * owner is invalid for git so have to go to npm instead * better names on workflow * package the api too * updates * rename to play better with gitignore * yarn * better * dont ignore me * yarn * readme * readme * release note * typo * updating to read package.json from fs rather than import to support more node versions * more ai autocomplete more problems
79 lines
2.1 KiB
YAML
79 lines
2.1 KiB
YAML
name: Publish npm packages
|
|
|
|
# # Npm packages are published for every new tag
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*.*.*'
|
|
|
|
jobs:
|
|
build-and-pack:
|
|
runs-on: ubuntu-latest
|
|
name: Build and pack npm packages
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up environment
|
|
uses: ./.github/actions/setup
|
|
|
|
- name: Build Web
|
|
run: yarn build:browser
|
|
|
|
- name: Pack the web and server packages
|
|
run: |
|
|
yarn workspace @actual-app/web pack --filename @actual-app/web.tgz
|
|
yarn workspace @actual-app/sync-server pack --filename @actual-app/sync-server.tgz
|
|
|
|
- name: Build API
|
|
run: yarn build:api
|
|
|
|
- name: Pack the api package
|
|
run: |
|
|
yarn workspace @actual-app/api pack --filename @actual-app/api.tgz
|
|
|
|
- name: Upload package artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: npm-packages
|
|
path: |
|
|
packages/desktop-client/@actual-app/web.tgz
|
|
packages/sync-server/@actual-app/sync-server.tgz
|
|
packages/api/@actual-app/api.tgz
|
|
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
name: Publish npm packages
|
|
needs: build-and-pack
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
steps:
|
|
- name: Download the artifacts
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: npm-packages
|
|
|
|
- name: Setup node and npm registry
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20.x'
|
|
registry-url: 'https://registry.npmjs.org'
|
|
|
|
- name: Publish Web
|
|
run: |
|
|
npm publish desktop-client/@actual-app/web.tgz --access public
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
- name: Publish Sync-Server
|
|
run: |
|
|
npm publish sync-server/@actual-app/sync-server.tgz --access public
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
- name: Publish API
|
|
run: |
|
|
npm publish api/@actual-app/api.tgz --access public
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|