This repository has been archived on 2023-07-28. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon-bot/.github/workflows/release.yml

74 lines
1.9 KiB
YAML
Raw Normal View History

name: release prod
2020-06-29 07:23:59 +00:00
on:
push:
tags: '[0-9]+.[0-9]+.[0-9]+'
2020-06-29 07:23:59 +00:00
jobs:
2020-06-29 07:26:28 +00:00
test-matrix:
name: matrix test
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
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
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: |
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
- name: package release
run: |
mkdir -p target/npm-build
cp mastodon-bot.js target/npm-build/
cp package.json target/npm-build/
cp README.md target/npm-build/
2020-06-29 16:13:55 +00:00
tar -cz -C target/npm-build -f target/npm-build.tgz .
2020-06-29 11:15:11 +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 07:56:37 +00:00
prerelease: true
2020-06-29 15:35:04 +00:00
2020-06-29 07:56:37 +00:00
- 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