fix: update AppID.alfredworkflow #460
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
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Update Workflow Version | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- '*/*.alfredworkflow' | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
description: 'Log level' | |
required: true | |
default: 'warning' | |
tags: | |
description: 'Test scenario tags' | |
jobs: | |
workflow_readme: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install plist | |
- name: Refresh Workflow Version | |
run: node .github/workflows/main.js updatePerWorkflowPage | |
- name: Build | |
run: | | |
git add . | |
- name: Deploy GitHub | |
uses: actions-js/push@master | |
with: | |
message: Update workflow version | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: master | |
home_readme_toc: | |
runs-on: ubuntu-latest | |
needs: [workflow_readme] | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: TOC Generator | |
uses: technote-space/toc-generator@v4 | |
with: | |
MAX_HEADER_LEVEL: 2 | |
# - name: GitHub README Generator | |
# uses: th3c0d3br34ker/[email protected] | |
# with: | |
# GH_TOKEN: ${{ github.token }} | |
# TIMEZONE: "Asia/Shanghai" | |
# SHOW_TOTAL_CONTRIBUTIONS: "True" | |
- run: npm install plist | |
- name: Refresh Workflow Version | |
run: node .github/workflows/main.js updateHomePage | |
- name: Build | |
run: | | |
git add . | |
- name: Deploy GitHub | |
uses: actions-js/push@master | |
with: | |
message: Update readme | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: master | |
contrib-readme-job: | |
runs-on: ubuntu-latest | |
name: A job to automate contrib in readme | |
needs: [ workflow_readme, home_readme_toc ] | |
steps: | |
- name: Contribute List | |
uses: akhilmhdh/[email protected] | |
with: | |
readme_path: README.md | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Contribute List CN | |
uses: akhilmhdh/[email protected] | |
with: | |
readme_path: README-zh.md | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |