Add GitHub workflow to build rbxm and publish to pesde and wally (#50)

* setup workflow

* change versions

* fix project json

* fix pesde and wally workflow

* update pesde toml

* wrap tokens ins trings

* update versions

* ignore lock files
This commit is contained in:
alicesaidhi 2025-06-23 19:31:40 +02:00 committed by GitHub
parent 6cf770df4e
commit 86f8574aeb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 126 additions and 1 deletions

53
.github/workflows/wallypesde.yml vendored Normal file
View file

@ -0,0 +1,53 @@
name: publish to wally and pesde
on:
release:
types: [published]
permissions:
contents: write
env:
GH_TOKEN: ${{ github.token }}
jobs:
wally:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup rokit
uses: CompeyDev/setup-rokit@v0.1.2
- name: login
run: wally login --token "${{ secrets.WALLY_TOKEN }}"
- name: publish
run: wally publish
pesde:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup rokit
uses: CompeyDev/setup-rokit@v0.1.2
- name: setup pesde
run: pesde install
- name: login
run: pesde auth login --token "${{ secrets.PESDE_TOKEN }}"
- name: publish
run: pesde publish --yes