68 lines
2.0 KiB
YAML
68 lines
2.0 KiB
YAML
# This is a basic workflow to help you get started with Actions
|
|
|
|
name: Release
|
|
|
|
env:
|
|
PLUGIN_NAME: logseq-plugin-favorite-tree
|
|
|
|
# Controls when the workflow will run
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*" # Push events to matching any tag format, i.e. 1.0, 20.15.10
|
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
workflow_dispatch:
|
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
|
jobs:
|
|
release:
|
|
# The type of runner that the job will run on
|
|
runs-on: ubuntu-latest
|
|
|
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
|
steps:
|
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "16.x"
|
|
- uses: pnpm/action-setup@v2.2.4
|
|
with:
|
|
version: 6.0.2
|
|
|
|
- name: Build
|
|
id: build
|
|
run: |
|
|
pnpm install
|
|
pnpm build
|
|
mkdir ${{ env.PLUGIN_NAME }}
|
|
cp README.md package.json icon.png ${{ env.PLUGIN_NAME }}
|
|
mv dist ${{ env.PLUGIN_NAME }}
|
|
zip -r ${{ env.PLUGIN_NAME }}.zip ${{ env.PLUGIN_NAME }}
|
|
ls
|
|
echo "::set-output name=tag_name::$(git tag --sort version:refname | tail -n 1)"
|
|
|
|
- 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
|
|
|
|
- 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: ./${{ env.PLUGIN_NAME }}.zip
|
|
asset_name: ${{ env.PLUGIN_NAME }}-${{ steps.build.outputs.tag_name }}.zip
|
|
asset_content_type: application/zip
|