mirror of
https://github.com/yildbs/obsidian-harada-method-plugin.git
synced 2026-07-22 07:40:28 +00:00
70 lines
No EOL
2.1 KiB
YAML
70 lines
No EOL
2.1 KiB
YAML
name: Release Obsidian Plugin
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
|
|
- name: Use Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16
|
|
- name: Get Version
|
|
id: version
|
|
run: |
|
|
echo "::set-output name=tag::$(git describe --abbrev=0)"
|
|
- name: Build
|
|
id: build
|
|
run: |
|
|
yarn
|
|
yarn run build
|
|
# 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 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 style.css
|
|
- name: Upload styles.css
|
|
id: upload-css
|
|
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 |