-
Notifications
You must be signed in to change notification settings - Fork 850
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
404 changed files
with
10,497 additions
and
6,167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ jobs: | |
build: | ||
strategy: | ||
matrix: | ||
node-version: [18.x] | ||
node-version: [20.x] | ||
runtime: | ||
- linux-x64 | ||
- linux-armv7l | ||
|
@@ -57,20 +57,18 @@ jobs: | |
- run: yarn run ci | ||
- run: yarn run lint | ||
- name: Get Version Number | ||
uses: jozsefsallai/[email protected] | ||
with: | ||
path: 'package.json' | ||
follow-symlinks: false | ||
id: getPackageInfo | ||
uses: jaywcjlove/github-action-package@main | ||
|
||
- name: Set Version Number Variable | ||
id: versionNumber | ||
uses: actions/github-script@v7 | ||
env: | ||
IS_DEV: ${{ contains(github.ref, 'development') }} | ||
IS_RC: ${{ contains(github.ref, 'RC') }} | ||
VERSION_NUMBER_NIGHTLY: ${{ env.PACKAGE_VERSION }}-nightly-${{ github.run_number }} | ||
VERSION_NUMBER_RC: ${{ env.PACKAGE_VERSION }}-RC-${{ github.run_number }} | ||
VERSION_NUMBER: ${{ env.PACKAGE_VERSION }} | ||
VERSION_NUMBER_NIGHTLY: ${{ steps.getPackageInfo.outputs.version }}-nightly-${{ github.run_number }} | ||
VERSION_NUMBER_RC: ${{ steps.getPackageInfo.outputs.version }}-RC-${{ github.run_number }} | ||
VERSION_NUMBER: ${{ steps.getPackageInfo.outputs.version }} | ||
with: | ||
result-encoding: string | ||
script: | | ||
|
@@ -79,16 +77,14 @@ jobs: | |
} else if (${{ env.IS_RC }}) { | ||
return "${{ env.VERSION_NUMBER_RC }}" | ||
} else { | ||
return "${{env.VERSION_NUMBER }}" | ||
return "${{env.VERSION_NUMBER }}" | ||
} | ||
# script: if ${{ env.IS_DEV }} then echo "::set-output name=VERSION_NUMBER::${{ env.VERSION_NUMBER_NIGHTLY }}" else echo "::set-output name=VERSION_NUMBER::${{ env.VERSION_NUMBER }}" fi | ||
|
||
- name: Update package.json version | ||
uses: jossef/action-[email protected] | ||
uses: jaywcjlove/github-action-package@main | ||
with: | ||
file: package.json | ||
field: version | ||
value: ${{ steps.versionNumber.outputs.result }} | ||
version: ${{ steps.versionNumber.outputs.result }} | ||
|
||
|
||
- name: Install libarchive-tools | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.