ci fix #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Releases | |
on: push | |
jobs: | |
deploy: | |
if: ${{ github.ref == 'refs/heads/main' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Main | |
uses: actions/checkout@v3 | |
- name: Setup Foreman | |
uses: Roblox/setup-foreman@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install Foreman Toolchains | |
run: foreman install | |
- name: Install Dependencies | |
run: wally install | |
- name: Create Packages Directory | |
run: mkdir -p Packages | |
- name: Run Selene | |
run : selene src | |
- name: Build pack.rbxm | |
run: rojo build -o pack.rbxm pack.project.json | |
- name: Upload pack.rbxm as build artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: NeoHotbar | |
path: pack.rbxm | |
- name: Get Release from wally.toml | |
uses: SebRollen/toml-action@v1.0.0 | |
id: read_toml | |
with: | |
file: 'wally.toml' | |
field: 'package.version' | |
- name: Publish to Wally | |
env: | |
WALLY_TOKEN: ${{ secrets.WALLY_AUTH_TOKEN }} | |
run: | | |
mkdir =p ~/.wally | |
printf "[tokens]\n\"https://api.wally.run/\" = \"%s\"" "$WALLY_TOKEN" >> ~/.wally/auth.toml | |
wally publish | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: ${{ steps.read_toml.outputs.value }} | |
tag_name: ${{ steps.read_toml.outputs.value }} | |
files: pack.rbxm | |
generate_release_notes: true | |
draft: true | |
development: | |
if: ${{ github.ref == 'refs/heads/dev' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout development | |
uses: actions/checkout@v3 | |
- name: Setup Foreman | |
uses: Roblox/setup-foreman@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install Foreman Toolchains | |
run: foreman install | |
- name: Run Selene | |
run : selene src | |
- name: Install Dependencies | |
run: wally install | |
- name: Create Packages Directory | |
run: mkdir -p Packages | |
- name: Build test-pack.rbxm | |
run: rojo build -o test-pack.rbxm pack.project.json | |
- name: Upload test-pack.rbxm as build artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: NeoHotbar | |
path: test-pack.rbxm |