Skip to content

Commit

Permalink
[ci skip] Merge pull request #201 from Sefiraat/change_workflows
Browse files Browse the repository at this point in the history
Use sensible names
  • Loading branch information
Sefiraat authored Jun 13, 2024
2 parents f219efc + 2474eef commit 04f7ee5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 16 deletions.
14 changes: 3 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
name: Build and Upload
name: Test Build

on:
push:
pull_request:
branches:
- master

jobs:
build:
name: Build and Upload
name: Build
runs-on: ubuntu-latest
if: contains(github.event.head_commit.message, '[ci skip]') == false

steps:
- uses: actions/[email protected]
Expand All @@ -22,10 +21,3 @@ jobs:

- name: Build with Maven
run: mvn package

- name: Upload to Builds
uses: WalshyDev/blob-builds/gh-action@main
with:
project: SlimeTinker
apiToken: ${{ secrets.BLOB_BUILDS_API_TOKEN }}
releaseNotes: ${{ github.event.head_commit.message }}
14 changes: 9 additions & 5 deletions .github/workflows/maven.yml → .github/workflows/upload.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
name: Build
name: Build and Upload

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
name: Build
name: Build and Upload
runs-on: ubuntu-latest
if: contains(github.event.head_commit.message, '[ci skip]') == false

Expand All @@ -25,3 +22,10 @@ jobs:

- name: Build with Maven
run: mvn package

- name: Upload to Builds
uses: WalshyDev/blob-builds/gh-action@main
with:
project: SlimeTinker
apiToken: ${{ secrets.BLOB_BUILDS_API_TOKEN }}
releaseNotes: ${{ github.event.head_commit.message }}

0 comments on commit 04f7ee5

Please sign in to comment.