Bump new versions, new parameter textafter, parsing number and boolean #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Obsidian Plugin | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo | |
- name: Set up JDK 14 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '14' | |
distribution: 'adopt' | |
- name: Build with Maven | |
run: cd DmnEvaluator && mvn --batch-mode --update-snapshots package && cd .. | |
- name: Copy DmnEvaluator.jar | |
run: cp DmnEvaluator/target/DmnEvaluator*-jar-with-dependencies.jar DmnEvaluator.jar | |
- name: Create DmnEvaluator.ts | |
run: echo "export const dmnEvaluatorBase64 = '$(base64 -w 0 DmnEvaluator.jar)';" > DmnEvaluator.ts | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '18.x' | |
- name: Get Version | |
id: version | |
run: | | |
echo "::set-output name=tag::$(git describe --abbrev=0)" | |
# Build the plugin | |
- name: Build | |
id: build | |
run: | | |
npm install | |
npm run build --if-present | |
# Package the required files into a zip | |
- name: Package | |
run: | | |
mkdir ${{ github.event.repository.name }} | |
cp main.js manifest.json README.md styles.css ${{ github.event.repository.name }} | |
zip -r ${{ github.event.repository.name }}.zip ${{ github.event.repository.name }} | |
# Create the release on github | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VERSION: ${{ github.ref }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: ${{ github.ref }} | |
draft: false | |
prerelease: false | |
# Upload the packaged release file | |
- name: Upload zip file | |
id: upload-zip | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./${{ github.event.repository.name }}.zip | |
asset_name: ${{ github.event.repository.name }}-${{ steps.version.outputs.tag }}.zip | |
asset_content_type: application/zip | |
# Upload the main.js | |
- name: Upload main.js | |
id: upload-main | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./main.js | |
asset_name: main.js | |
asset_content_type: text/javascript | |
# Upload the manifest.json | |
- name: Upload manifest.json | |
id: upload-manifest | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./manifest.json | |
asset_name: manifest.json | |
asset_content_type: application/json | |
# Upload the styles.css | |
- name: Upload styles.css | |
id: upload-styles | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./styles.css | |
asset_name: styles.css | |
asset_content_type: text/css | |
# Upload the DmnEvaluator.jar | |
- name: Upload DmnEvaluator.jar | |
id: upload-dmnevaluator | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./DmnEvaluator.jar | |
asset_name: DmnEvaluator.jar | |
asset_content_type: application/java-archive |