dda-masto-embed/.github/workflows/build.yml

109 lines
3.4 KiB
YAML
Raw Normal View History

2020-07-03 06:38:08 +00:00
name: build-it
2020-07-03 06:40:17 +00:00
on: push
2020-06-29 19:59:31 +00:00
jobs:
2020-07-03 06:38:08 +00:00
build-it:
name: build-it
2020-06-29 19:59:31 +00:00
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- 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 }}-
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
2020-06-30 08:28:35 +00:00
registry-url: 'https://registry.npmjs.org'
2020-06-29 19:59:31 +00:00
- name: test em
run: |
npm install
npm install -g --save-dev shadow-cljs
shadow-cljs compile test
- name: build em
2020-07-03 06:38:08 +00:00
if: ${{ github.branch == 'master' }}
2020-06-29 19:59:31 +00:00
run: |
2020-06-30 07:09:59 +00:00
shadow-cljs release lib
sha256sum target/lib.js > target/dda-masto-embedd.js.sha256
sha512sum target/lib.js > target/dda-masto-embedd.js.sha512
2020-06-29 19:59:31 +00:00
- name: Create Release
2020-07-03 06:38:08 +00:00
if: ${{ github.tag == '[0-9]+.[0-9]+.[0-9]+' }}
2020-06-29 19:59:31 +00:00
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 masto-embedd.js
2020-07-03 06:38:08 +00:00
if: ${{ github.tag == '[0-9]+.[0-9]+.[0-9]+' }}
2020-06-29 19:59:31 +00:00
id: upload-masto-embedd-js
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
2020-06-30 07:09:59 +00:00
asset_path: target/lib.js
2020-06-29 19:59:31 +00:00
asset_name: dda-masto-embed.js
asset_content_type: application/json
- name: Upload masto-embedd.js.sha256
2020-07-03 06:38:08 +00:00
if: ${{ github.tag == '[0-9]+.[0-9]+.[0-9]+' }}
2020-06-29 19:59:31 +00:00
id: upload-masto-embedd-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/dda-masto-embedd.js.sha256
asset_name: dda-masto-embedd.js.sha256
asset_content_type: application/json
- name: Upload masto-embedd.js.sha512
2020-07-03 06:38:08 +00:00
if: ${{ github.tag == '[0-9]+.[0-9]+.[0-9]+' }}
2020-06-29 19:59:31 +00:00
id: upload-masto-embedd-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/dda-masto-embedd.js.sha512
asset_name: dda-masto-embedd.js.sha512
asset_content_type: application/json
- name: upload to npm
2020-07-03 06:38:08 +00:00
if: ${{ github.branch == 'master' }}
2020-06-29 19:59:31 +00:00
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
mkdir -p target/npm-build
2020-06-30 07:09:59 +00:00
cp target/lib.js target/npm-build/
2020-06-29 19:59:31 +00:00
cp target/dda-masto-embedd.js.sha256 target/npm-build/
cp target/dda-masto-embedd.js.sha512 target/npm-build/
cp package.json target/npm-build/
cp README.md target/npm-build/
2020-07-03 06:38:08 +00:00
cp LICENSE target/npm-build/
2020-06-29 19:59:31 +00:00
tar -cz -C target/npm-build -f target/npm-build.tgz .
npm publish ./target/npm-build.tgz --access public