You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
mastodon-bot/.gitlab-ci.yml

50 lines
1.3 KiB
YAML

3 years ago
image: node:lts-buster
stages:
- test
- package
- upload
3 years ago
cache:
key: ${CI_COMMIT_REF_SLUG}
3 years ago
paths:
- node_modules/
default:
before_script:
- apt update && apt -qqy install openjdk-11-jre-headless
- echo _auth=$NPM_PUBLSH_KEY >> .npmrc
- echo email=$NPM_PUBLSH_MAIL >> .npmrc
- echo always-auth=true >> .npmrc
- npm install
- npm install -g --save-dev shadow-cljs
build:
stage: test
script:
- shadow-cljs compile test
package:
stage: package
artifacts:
paths:
- target/
script:
- shadow-cljs compile app
- chmod a+x target/mastodon-bot.js
- sha256sum target/mastodon-bot.js > target/mastodon-bot.js.sha256
- sha512sum target/mastodon-bot.js > target/mastodon-bot.js.sha512
upload:
stage: upload
script:
- mkdir -p target/npm-build/mastodon_bot
- cp target/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/
3 years ago
#- npm version --no-git-tag-version $(npm view <yourProject>@latest version)
#- npm version --no-git-tag-version prerelease
- npm publish ./target/npm-build/mastodon_bot --access public