chore(actions): include publishing action

This commit is contained in:
Erica Marigold 2024-03-30 12:10:28 +05:30
parent 7b51d3ae82
commit d76c6c6a2f
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1
3 changed files with 43 additions and 2 deletions

42
.github/workflows/publish.yaml vendored Normal file
View 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

View file

@ -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]

View file

@ -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",