mirror of
https://github.com/0x5eal/wg-lua.git
synced 2024-12-12 12:50:36 +00:00
chore(actions): include publishing action
This commit is contained in:
parent
7b51d3ae82
commit
d76c6c6a2f
3 changed files with 43 additions and 2 deletions
42
.github/workflows/publish.yaml
vendored
Normal file
42
.github/workflows/publish.yaml
vendored
Normal file
|
@ -0,0 +1,42 @@
|
|||
name: Publish
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "**"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
name: Publish
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install PNPM
|
||||
uses: pnpm/action-setup@v3
|
||||
|
||||
- name: Install Node
|
||||
uses: actions/setup-node@v4.0.2
|
||||
with:
|
||||
cache: "pnpm"
|
||||
|
||||
- name: Install dependencies
|
||||
run: pnpm i
|
||||
|
||||
- name: Install tooling
|
||||
uses: ok-nick/setup-aftman@v0.4.2
|
||||
with:
|
||||
cache: true
|
||||
|
||||
- name: Build package
|
||||
id: export
|
||||
run: echo "tarball=$(pnpm export | tail -n 1)" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Publish artifacts
|
||||
uses: ncipollo/release-action@v1
|
||||
with:
|
||||
artifacts: "${{ steps.export.outputs.tarball }}"
|
||||
body: "See [CHANGELOG.md](https://github.com/0x5eal/wg-lua/blob/main/CHANGELOG.md) for more details."
|
||||
draft: true
|
|
@ -58,10 +58,8 @@ function main()
|
|||
|
||||
if path == LUAU_TYPES_PATH then
|
||||
bundle = fs.readFile(LUAU_TYPES_PATH)
|
||||
print(bundle)
|
||||
elseif path == TS_TYPES_PATH then
|
||||
bundle = fs.readFile(TS_TYPES_PATH)
|
||||
print(bundle)
|
||||
end
|
||||
|
||||
path = "out/" .. path:split("/")[3]
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
"description": "A lua implementation of the wireguard keygen algorithm.",
|
||||
"main": "out/init.lua",
|
||||
"scripts": {
|
||||
"export": "pnpm build && pnpm pack",
|
||||
"build": "rbxtsc --verbose && ./lunew bundle",
|
||||
"watch": "rbxtsc -w",
|
||||
"lint": "eslint src",
|
||||
|
|
Loading…
Reference in a new issue