2020-07-13 16:31:18 +00:00
|
|
|
name: stable
|
2020-06-29 07:23:59 +00:00
|
|
|
on:
|
|
|
|
push:
|
2020-06-29 18:08:45 +00:00
|
|
|
tags: '[0-9]+.[0-9]+.[0-9]+*'
|
2020-06-29 07:23:59 +00:00
|
|
|
|
|
|
|
jobs:
|
2020-07-13 16:31:18 +00:00
|
|
|
stable:
|
|
|
|
name: stable
|
2020-06-29 07:26:28 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-06-29 16:13:55 +00:00
|
|
|
node-version: [14.x]
|
2020-06-29 07:26:28 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2020-06-29 15:35:04 +00:00
|
|
|
|
2020-06-29 07:26:28 +00:00
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
2020-06-29 15:42:28 +00:00
|
|
|
|
2020-06-29 15:58:40 +00:00
|
|
|
- name: test em
|
2020-06-29 16:13:55 +00:00
|
|
|
run: |
|
2020-06-29 16:28:09 +00:00
|
|
|
npm install
|
|
|
|
npm install -g --save-dev shadow-cljs
|
2020-06-29 16:13:55 +00:00
|
|
|
shadow-cljs compile test
|
2020-06-29 15:42:28 +00:00
|
|
|
|
2020-06-29 15:58:40 +00:00
|
|
|
- name: build em
|
2020-06-29 16:13:55 +00:00
|
|
|
run: |
|
2020-06-29 16:20:52 +00:00
|
|
|
shadow-cljs release app
|
2020-06-29 16:48:47 +00:00
|
|
|
chmod a+x mastodon-bot.js
|
2020-06-29 18:08:45 +00:00
|
|
|
sha256sum mastodon-bot.js > target/mastodon-bot.js.sha256
|
|
|
|
sha512sum mastodon-bot.js > target/mastodon-bot.js.sha512
|
2020-06-29 16:20:52 +00:00
|
|
|
|
2020-06-29 07:56:37 +00:00
|
|
|
- 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 }}
|
2020-06-29 11:30:29 +00:00
|
|
|
draft: false
|
2020-06-29 17:42:44 +00:00
|
|
|
prerelease: false
|
2020-06-29 15:35:04 +00:00
|
|
|
|
2020-06-29 18:08:45 +00:00
|
|
|
- name: Upload mastodon-bot.js
|
|
|
|
id: upload-mastodon-bot-js
|
2020-06-29 07:56:37 +00:00
|
|
|
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
|
2020-07-13 16:31:18 +00:00
|
|
|
asset_content_type: application/javascript
|
2020-06-29 18:08:45 +00:00
|
|
|
|
|
|
|
- name: Upload mastodon-bot.js.sha256
|
|
|
|
id: upload-mastodon-bot-js-sha256
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: ./target/mastodon-bot.js.sha256
|
|
|
|
asset_name: mastodon-bot.js.sha256
|
2020-07-13 16:31:18 +00:00
|
|
|
asset_content_type: text/plain
|
2020-06-29 18:08:45 +00:00
|
|
|
|
|
|
|
- name: Upload mastodon-bot.js.sha512
|
|
|
|
id: upload-mastodon-bot-js-sha512
|
|
|
|
uses: actions/upload-release-asset@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
asset_path: ./target/mastodon-bot.js.sha512
|
|
|
|
asset_name: mastodon-bot.js.sha512
|
2020-07-13 16:31:18 +00:00
|
|
|
asset_content_type: text/plain
|
|
|
|
|
2020-06-29 18:27:01 +00:00
|
|
|
- name: upload to npm
|
|
|
|
env:
|
|
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
run: |
|
2020-07-09 07:36:31 +00:00
|
|
|
mkdir -p target/npm-build/mastodon_bot
|
|
|
|
cp mastodon-bot.js target/npm-build/mastodon_bot/
|
|
|
|
cp target/mastodon-bot.js.sha256 target/npm-build/mastodon_bot/
|
|
|
|
cp target/mastodon-bot.js.sha512 target/npm-build/mastodon_bot/
|
|
|
|
cp package.json target/npm-build/mastodon_bot/
|
|
|
|
cp README.md target/npm-build/mastodon_bot/
|
2020-07-13 16:35:19 +00:00
|
|
|
npm publish ./target/npm-build --access public
|