diff --git a/.github/workflows/build-action.yml b/.github/build-for-release-action.yml similarity index 95% rename from .github/workflows/build-action.yml rename to .github/build-for-release-action.yml index 798bfa8..149e885 100644 --- a/.github/workflows/build-action.yml +++ b/.github/build-for-release-action.yml @@ -1,4 +1,4 @@ -name: Build +name: Build for release runs: using: "composite" diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3701736..c6ff300 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,7 +11,7 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: ./.github/workflows/build-action.yml + - uses: ./.github/build-for-release-action.yml - name: Create GitHub release uses: ncipollo/release-action@v1 diff --git a/.github/workflows/pipeline.yml b/.github/workflows/standard.yml similarity index 59% rename from .github/workflows/pipeline.yml rename to .github/workflows/standard.yml index a9ce249..49cf68a 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/standard.yml @@ -1,13 +1,13 @@ -name: Pipeline +name: Standard on: push: pull_request: jobs: - deploy: + Standard: runs-on: windows-latest steps: - uses: actions/checkout@v4 - - uses: ./.github/workflows/build-action.yml + - uses: ./.github/build-for-release-action.yml