-
Notifications
You must be signed in to change notification settings - Fork 29
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
1 parent
9fa45e3
commit 0932121
Showing
4 changed files
with
34 additions
and
85 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,38 +2,14 @@ name: Release | |
|
||
on: | ||
push: | ||
tags: | ||
- '[0-9]+.[0-9]+.[0-9]+' | ||
branches: | ||
- test | ||
|
||
jobs: | ||
create-release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Create Release | ||
id: create_release | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: Release ${{ github.ref }} | ||
draft: false | ||
prerelease: false | ||
- name: Dump upload url to file | ||
run: echo '${{ steps.create_release.outputs.upload_url }}' > upload_url | ||
- name: Upload upload_url | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: upload_url | ||
path: upload_url | ||
|
||
build: | ||
needs: create-release | ||
strategy: | ||
matrix: | ||
platform: [ | ||
'linux-arm', | ||
'linux-arm64', | ||
'linux-x64', | ||
] | ||
pair: [ | ||
|
@@ -42,10 +18,6 @@ jobs: | |
'node:14', | ||
] | ||
include: | ||
- platform: 'linux-arm' | ||
host-os: 'ubuntu-latest' | ||
- platform: 'linux-arm64' | ||
host-os: 'ubuntu-latest' | ||
- platform: 'linux-x64' | ||
host-os: 'ubuntu-latest' | ||
- pair: 'node:10' | ||
|
@@ -61,14 +33,6 @@ jobs: | |
runs-on: ${{ matrix.host-os }} | ||
|
||
steps: | ||
- name: Download upload_url | ||
uses: actions/download-artifact@v1 | ||
with: | ||
name: upload_url | ||
- name: Set upload_url | ||
run: echo "UPLOAD_URL=$(cat upload_url/upload_url)" >> $GITHUB_ENV | ||
- name: Set release version | ||
run: echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.version }} | ||
uses: actions/setup-node@v4 | ||
|
@@ -77,23 +41,3 @@ jobs: | |
- name: Build adapter | ||
run: | | ||
./build.sh "${{ matrix.platform }}" "${{ matrix.language }}" "${{ matrix.version }}" | ||
- name: Upload Release Asset | ||
id: upload-release-asset | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ env.UPLOAD_URL }} | ||
asset_path: zigbee-adapter-${{ env.RELEASE_VERSION }}-${{ matrix.platform }}-v${{ matrix.version }}.tgz | ||
asset_name: zigbee-adapter-${{ env.RELEASE_VERSION }}-${{ matrix.platform }}-v${{ matrix.version }}.tgz | ||
asset_content_type: application/gnutar | ||
- name: Upload Release Asset Checksum | ||
id: upload-release-asset-checksum | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ env.UPLOAD_URL }} | ||
asset_path: zigbee-adapter-${{ env.RELEASE_VERSION }}-${{ matrix.platform }}-v${{ matrix.version }}.tgz.sha256sum | ||
asset_name: zigbee-adapter-${{ env.RELEASE_VERSION }}-${{ matrix.platform }}-v${{ matrix.version }}.tgz.sha256sum | ||
asset_content_type: text/plain |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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