diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2602b23..457c86c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: with: token: ${{ secrets.BUILD_TOKEN }} - name: Make - run: |- + run: | make build - name: Build uses: CompeyDev/rojo-build-action@0.1.5 @@ -20,7 +20,7 @@ jobs: output: build/latest type: rbxm - name: Commit and Push - run: |- + run: | git config --global user.email "bot@gtihub" git config --global user.name "Bot" git diff --quiet build/latest.rbxm || (git add build/latest.rbxm && git commit -m "chore(deploy): build rojo project" && git push) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a65f606..a8cb504 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -11,7 +11,7 @@ jobs: with: node-version: 20 - name: Build - run: |- + run: | make build - name: Release uses: softprops/action-gh-release@v2