Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/template/forks/polyipseity'
Browse files Browse the repository at this point in the history
Signed-off-by: William So <polyipseity@gmail.com>
  • Loading branch information
polyipseity committed Jan 11, 2024
2 parents 362b1ae + fade350 commit f04529b
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 17 deletions.
19 changes: 2 additions & 17 deletions .github/workflows/latest.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
jobs:
build:
release-latest:
permissions:
contents: write
runs-on: ubuntu-latest
Expand All @@ -20,22 +20,7 @@ jobs:
env:
GH_TOKEN: ${{github.token}}
run: |
gh release upload latest .github/*.tgz main.js manifest.json styles.css --clobber
build-pnpm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: pnpm/action-setup@v2
with:
version: '*'
- uses: actions/setup-node@v3
with:
cache: pnpm
node-version: '*'
- run: pnpm install
- run: pnpm build
gh release upload latest .github/*.tgz --clobber
on:
push:
tags:
Expand Down
33 changes: 33 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-node@v3
with:
cache: npm
node-version: '*'
- run: npm ci
- run: npm run build
build-pnpm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: pnpm/action-setup@v2
with:
version: '*'
- uses: actions/setup-node@v3
with:
cache: pnpm
node-version: '*'
- run: pnpm install
- run: pnpm build
on:
pull_request_target:
push:
workflow_dispatch:
permissions: {}
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,16 @@ This file is automatically opened on first install. You can reopen it in setting

Contributions are welcome!

This project uses [`changesets`](https://github.com/changesets/changesets) to manage the changelog. When creating a pull request, please [add a changeset](https://github.com/changesets/changesets/blob/main/docs/intro-to-using-changesets.md#adding-changesets) describing the changes. Add multiple changesets if your pull request changes several things. End each changeset with `([PR number](PR link) by [author username](author link))`. For example, the newly created file under the directory `.changeset` should look like:

```Markdown
---
"example": patch
---

This is an example change. ([GH#1](https://github.com/ghost/example/pull/1) by [@ghost](https://github.com/ghost))
```

### Todos

The todos here, ordered alphabetically, are things planned for the plugin. There are no guarantees that they will be completed. However, we are likely to accept contributions for them.
Expand Down

0 comments on commit f04529b

Please sign in to comment.