101 lines
3.1 KiB
YAML
101 lines
3.1 KiB
YAML
name: stable
|
|
on:
|
|
push:
|
|
tags: '[0-9]+.[0-9]+.[0-9]+*'
|
|
|
|
jobs:
|
|
stable:
|
|
name: stable
|
|
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 }}
|
|
|
|
- name: test em
|
|
run: |
|
|
npm install
|
|
npm install -g --save-dev shadow-cljs
|
|
shadow-cljs compile test
|
|
|
|
- name: build em
|
|
run: |
|
|
shadow-cljs release app
|
|
chmod a+x mastodon-bot.js
|
|
sha256sum mastodon-bot.js > target/mastodon-bot.js.sha256
|
|
sha512sum mastodon-bot.js > target/mastodon-bot.js.sha512
|
|
shadow-cljs run shadow.cljs.build-report app target/build-report.html
|
|
|
|
- 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 mastodon-bot.js
|
|
id: upload-mastodon-bot-js
|
|
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/javascript
|
|
|
|
- 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
|
|
asset_content_type: text/plain
|
|
|
|
- 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
|
|
asset_content_type: text/plain
|
|
|
|
- name: Upload build-report
|
|
id: build-report
|
|
uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
asset_path: ./target/build-report
|
|
asset_name: build-report.html
|
|
asset_content_type: text/html
|
|
|
|
- name: upload to npm
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
run: |
|
|
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/
|
|
npm publish ./target/npm-build --access public
|