-
Notifications
You must be signed in to change notification settings - Fork 2
68 lines (59 loc) · 1.79 KB
/
release-development.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# name: Release development
# on:
# push:
# branches: [main]
# defaults:
# run:
# working-directory: ./
# jobs:
# prebuild:
# runs-on: ubuntu-22.04
# outputs:
# version: ${{ steps.package-version.outputs.version }}
# steps:
# - name: Check out repository
# uses: actions/checkout@v4
# with:
# fetch-depth: 0
# - name: get npm version
# id: package-version
# uses: Saionaro/[email protected]
# publish-libraries:
# needs: prebuild
# runs-on: ubuntu-22.04
# environment: development
# steps:
# - name: Check out repository
# uses: actions/checkout@v4
# with:
# fetch-depth: 0
# - name: Setup Node version
# uses: actions/setup-node@v4
# with:
# node-version-file: '.nvmrc'
# check-latest: false
# cache: "npm"
# cache-dependency-path: package-lock.json
# - name: Cache cargo assets
# id: cache
# uses: actions/cache@v4
# with:
# path: |
# ~/.cargo/bin/
# ~/.cargo/registry/index/
# ~/.cargo/registry/cache/
# ~/.cargo/git/db/
# target/
# key: build-cargo-${{ hashFiles('**/Cargo.lock') }}
# - name: Install dependencies
# run: |
# npm cache verify
# npm ci --no-audit --prefer-offline
# - name: Setup cargo version from npm
# run: |
# cargo install cargo-edit --force
# cargo set-version ${{ needs.prebuild.outputs.version }}-dev.${{github.run_number}}
# - name: Run NX publish
# run: npx nx run-many -t publish --skip-nx-cache --verbose
# env:
# CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}