Skip to content

Commit 65ea5b7

Browse files
Testing dev release
1 parent 568b69b commit 65ea5b7

File tree

2 files changed

+28
-26
lines changed

2 files changed

+28
-26
lines changed

.github/workflows/dev-release.yml

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
name: dev-release
55

66
on:
7+
push:
8+
branches: dev-releases
79
workflow_dispatch:
810

911
jobs:

.github/workflows/release.yml

+26-26
Original file line numberDiff line numberDiff line change
@@ -202,29 +202,29 @@ jobs:
202202
if: ${{ matrix.target == 'x86_64-unknown-linux-musl' }}
203203
run: node -e 'require("@parcel/rust")'
204204

205-
build-and-release:
206-
runs-on: ubuntu-20.04
207-
name: Build and release
208-
needs:
209-
- build-macos-windows
210-
- build-linux-musl
211-
- build-linux-gnu-arm
212-
steps:
213-
- uses: actions/checkout@v4
214-
with:
215-
fetch-depth: 0
216-
- uses: bahmutov/[email protected]
217-
- name: Build native packages
218-
run: yarn build-native-release
219-
- name: Download artifacts
220-
uses: actions/download-artifact@v3
221-
with:
222-
path: artifacts
223-
- name: Move artifacts
224-
run: for d in artifacts/*/*/*; do cp $d/*.node packages/$(basename $(dirname $d))/$(basename $d); done
225-
- name: Debug
226-
run: ls -l packages/*/*/*.node
227-
- run: echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} > .npmrc
228-
env:
229-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
230-
- run: ${{ inputs.release-command }}
205+
# build-and-release:
206+
# runs-on: ubuntu-20.04
207+
# name: Build and release
208+
# needs:
209+
# - build-macos-windows
210+
# - build-linux-musl
211+
# - build-linux-gnu-arm
212+
# steps:
213+
# - uses: actions/checkout@v4
214+
# with:
215+
# fetch-depth: 0
216+
# - uses: bahmutov/[email protected]
217+
# - name: Build native packages
218+
# run: yarn build-native-release
219+
# - name: Download artifacts
220+
# uses: actions/download-artifact@v3
221+
# with:
222+
# path: artifacts
223+
# - name: Move artifacts
224+
# run: for d in artifacts/*/*/*; do cp $d/*.node packages/$(basename $(dirname $d))/$(basename $d); done
225+
# - name: Debug
226+
# run: ls -l packages/*/*/*.node
227+
# - run: echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} > .npmrc
228+
# env:
229+
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
230+
# - run: ${{ inputs.release-command }}

0 commit comments

Comments
 (0)