try to express dev/prod release
This commit is contained in:
parent
b009b533b4
commit
65d4c54bb6
3 changed files with 72 additions and 5 deletions
5
.github/workflows/release-dev.yml
vendored
5
.github/workflows/release-dev.yml
vendored
|
@ -3,8 +3,7 @@ name: Node.js CI
|
|||
on:
|
||||
push:
|
||||
branches: [ master, automate_gh_release ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
tags: '![0-9]+.[0-9]+.[0-9]+'
|
||||
|
||||
jobs:
|
||||
test-matrix:
|
||||
|
@ -47,7 +46,7 @@ jobs:
|
|||
- run: cp package.json target/npm-build/
|
||||
- run: cp README.md target/npm-build/
|
||||
- run: tar -cz -C target/npm-build -f target/npm-build.tgz .
|
||||
|
||||
|
||||
- name: Create Release
|
||||
id: create_release
|
||||
uses: actions/create-release@v1
|
||||
|
|
70
.github/workflows/release-prod.yml
vendored
Normal file
70
.github/workflows/release-prod.yml
vendored
Normal file
|
@ -0,0 +1,70 @@
|
|||
name: Node.js CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master, automate_gh_release ]
|
||||
tags: '[0-9]+.[0-9]+.[0-9]+'
|
||||
|
||||
jobs:
|
||||
test-matrix:
|
||||
name: matrix test
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [10.x, 12.x, 14.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- run: npm install
|
||||
- run: npm install -g --save-dev shadow-cljs
|
||||
- run: shadow-cljs compile test
|
||||
|
||||
release-build-dev:
|
||||
name: release dev
|
||||
needs: test-matrix
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [14.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- run: npm install
|
||||
- run: npm install -g --save-dev shadow-cljs
|
||||
- run: shadow-cljs release app
|
||||
- run: rm -rf target/npm-build
|
||||
- run: mkdir -p target/npm-build
|
||||
- run: cp mastodon-bot.js target/npm-build/
|
||||
- run: cp package.json target/npm-build/
|
||||
- run: cp README.md target/npm-build/
|
||||
- run: tar -cz -C target/npm-build -f target/npm-build.tgz .
|
||||
|
||||
- name: Create Release
|
||||
id: create_release
|
||||
uses: actions/create-release@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
tag_name: ${{ github.ref }}
|
||||
release_name: Release ${{ github.ref }}
|
||||
draft: false
|
||||
prerelease: false
|
||||
- name: Upload Release Asset
|
||||
id: upload-release-asset
|
||||
uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||
asset_path: ./mastodon-bot.js
|
||||
asset_name: mastodon-bot.js
|
||||
asset_content_type: application/json
|
||||
|
|
@ -1,8 +1,6 @@
|
|||
name: Node.js CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ never ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
Reference in a new issue