diff --git a/.github/workflows/release.yml b/.github/workflows/stable.yml similarity index 78% rename from .github/workflows/release.yml rename to .github/workflows/stable.yml index afa0e22..4589b76 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/stable.yml @@ -1,11 +1,11 @@ -name: release prod +name: stable on: push: tags: '[0-9]+.[0-9]+.[0-9]+*' jobs: - test-matrix: - name: matrix test + stable: + name: stable runs-on: ubuntu-latest strategy: matrix: @@ -13,19 +13,6 @@ jobs: 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 @@ -44,6 +31,7 @@ jobs: 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 @@ -65,7 +53,7 @@ jobs: upload_url: ${{ steps.create_release.outputs.upload_url }} asset_path: ./mastodon-bot.js asset_name: mastodon-bot.js - asset_content_type: application/json + asset_content_type: application/javascript - name: Upload mastodon-bot.js.sha256 id: upload-mastodon-bot-js-sha256 @@ -76,7 +64,7 @@ jobs: upload_url: ${{ steps.create_release.outputs.upload_url }} asset_path: ./target/mastodon-bot.js.sha256 asset_name: mastodon-bot.js.sha256 - asset_content_type: application/json + asset_content_type: text/plain - name: Upload mastodon-bot.js.sha512 id: upload-mastodon-bot-js-sha512 @@ -87,7 +75,18 @@ jobs: upload_url: ${{ steps.create_release.outputs.upload_url }} asset_path: ./target/mastodon-bot.js.sha512 asset_name: mastodon-bot.js.sha512 - asset_content_type: application/json + 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: @@ -99,4 +98,4 @@ jobs: 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 --dry-run + npm publish ./target/npm-build --access public diff --git a/.github/workflows/test-pr.yml b/.github/workflows/test-pr.yml deleted file mode 100644 index 44febd0..0000000 --- a/.github/workflows/test-pr.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: test PR - -on: - pull_request: - branches: [ master ] - push: - ingnored-branches: [ 'master' ] - -jobs: - test-matrix: - name: matrix test - runs-on: ubuntu-latest - strategy: - matrix: - node-version: [10.x, 12.x, 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: /usr/lib/node_modules - 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 }} - - - name: test em - run: | - npm install - npm install -g --save-dev shadow-cljs - shadow-cljs compile test diff --git a/RELEASING.md b/RELEASING.md index 2b77be3..7ade9b0 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -2,44 +2,36 @@ ## dev release ``` +# run the tests shadow-cljs compile test +# release the app shadow-cljs release app chmod a+x mastodon-bot.js -rm -rf target/npm-build -mkdir target/npm-build -cp mastodon-bot.js target/npm-build -cp package.json target/npm-build -cp README.md target/npm-build +# publish to npm +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 ``` -## prod release (should be done from master) +## stable release (should be done from master) ``` shadow-cljs compile test -#adjust version -vi shadow-cljs.edn +#adjust [version] +vi package.json git commit -am "releasing" -git tag [version] -git push && git push --tag +git commit -am [version] +git push --follow-tags -shadow-cljs release app - -shadow-cljs release app -chmod a+x mastodon-bot.js -rm -rf target/npm-build -mkdir target/npm-build -cp mastodon-bot.js target/npm-build -cp package.json target/npm-build -cp README.md target/npm-build - -npm publish ./target/npm-build --access public - -# Bump version -vi shadow-cljs.edn +# Bump [version] +vi package.json git commit -am "version bump" && git push ``` diff --git a/shadow-cljs.edn b/shadow-cljs.edn index a823f03..329d458 100644 --- a/shadow-cljs.edn +++ b/shadow-cljs.edn @@ -8,5 +8,4 @@ :repl-pprint true} :app {:target :node-script :output-to "mastodon-bot.js" - :main mastodon-bot.core/main - :compiler-options {:optimizations :simple}}}} + :main mastodon-bot.core/main}}}