Merge pull request #5 from MicrocontrollersDev/main
This commit is contained in:
commit
14ecaabb41
3 changed files with 40 additions and 3 deletions
37
.github/workflows/release.yml
vendored
Normal file
37
.github/workflows/release.yml
vendored
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
name: Release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "v*"
|
||||
|
||||
jobs:
|
||||
release:
|
||||
name: Release
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
steps:
|
||||
- name: Check out Git repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18
|
||||
|
||||
- uses: pnpm/action-setup@v2
|
||||
with:
|
||||
version: latest
|
||||
|
||||
- name: Install Node.js dependencies
|
||||
run: pnpm install
|
||||
|
||||
- name: Build TypeScript and bundle into asar
|
||||
run: pnpm run bundle
|
||||
|
||||
- uses: ncipollo/release-action@v1
|
||||
with:
|
||||
artifacts: "bundle/*"
|
||||
makeLatest: true
|
||||
|
|
@ -23,7 +23,7 @@ To install for Replugged:
|
|||
|
||||
Click here:
|
||||
|
||||
[](https://replugged.dev/install?identifier=dev.userpfp.userpfp)
|
||||
[](https://replugged.dev/install?identifier=UserPFP/UserPFP&source=github)
|
||||
|
||||
OR
|
||||
|
||||
|
|
|
|||
|
|
@ -16,11 +16,11 @@
|
|||
"version": "1.0.1",
|
||||
"updater": {
|
||||
"type": "github",
|
||||
"id": "UserPFP/USERPFP"
|
||||
"id": "UserPFP/UserPFP"
|
||||
},
|
||||
"license": "GPL 3.0",
|
||||
"type": "replugged-theme",
|
||||
"main": "src/main.css",
|
||||
"source": "https://github.com/UserPFP/USERPFP",
|
||||
"source": "https://github.com/UserPFP/UserPFP",
|
||||
"image": ["https://camo.githubusercontent.com/68decd2d5b4c237a97940c9012474ce82e6ed3eee65b3950032475ce82192c03/68747470733a2f2f692e6962622e636f2f6d62514a534b6d2f696d6167652d323032332d30372d31362d3131323131353837322e706e67"]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue