Browse Source

Update workflows

Daniel Chalmers 1 year ago
parent
commit
5449488296

+ 1 - 1
.github/build-for-release-action.yml → .github/actions/prepare-for-release/action.yml

@@ -1,4 +1,4 @@
-name: Build for release
+name: Prepare for release
 
 runs:
   using: "composite"

+ 3 - 3
.github/workflows/standard.yml → .github/workflows/build.yml

@@ -1,13 +1,13 @@
-name: Standard
+name: Build
 
 on:
   push:
   pull_request:
 
 jobs:
-  Standard:
+  build:
     runs-on: windows-latest
     steps:
       - uses: actions/checkout@v4
       
-      - uses: ./.github/build-for-release-action.yml
+      - uses: ./.github/actions/prepare-for-release

+ 1 - 1
.github/workflows/deploy.yml

@@ -11,7 +11,7 @@ jobs:
     steps:
       - uses: actions/checkout@v4
       
-      - uses: ./.github/build-for-release-action.yml
+      - uses: ./.github/actions/prepare-for-release
 
       - name: Create GitHub release
         uses: ncipollo/release-action@v1