Fix build workflow env injecting.

This commit is contained in:
天クマ 2025-12-15 00:23:43 -03:00
commit 75b0259943

View file

@ -5,6 +5,9 @@ on: [push]
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
env:
NEMESIS_VERSION_NAME: "autobuild-${{ github.sha }}"
NEMESIS_BUILD_CHANNEL: "autobuild"
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v6.0.1 uses: actions/checkout@v6.0.1
@ -30,7 +33,4 @@ jobs:
- name: Upload artifacts - name: Upload artifacts
uses: actions/upload-artifact@v6.0.0 uses: actions/upload-artifact@v6.0.0
with: with:
path: build/libs/*.jar path: build/libs/*.jar
env:
NEMESIS_VERSION_NAME: "autobuild-${{ github.sha }}"
NEMESIS_BUILD_CHANNEL: "autobuild"