Skip to content

Commit

Permalink
build: use common names in workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Phil Adams <phil_adams@us.ibm.com>
  • Loading branch information
padamstx committed Jan 9, 2025
1 parent df6ed32 commit 007376d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Python v${{ matrix.python-version }}
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.12
Expand All @@ -39,7 +39,6 @@ jobs:
build:
needs: detect-secrets
if: "!contains(github.event.head_commit.message, '[skip ci]')"
name: Build/Test (Go v${{ matrix.go-version }})
runs-on: ubuntu-latest
strategy:
Expand All @@ -66,6 +65,7 @@ jobs:

publish-release:
needs: build
name: Semantic-Release
if: "github.ref_name == 'main' && github.event_name != 'pull_request'"
runs-on: ubuntu-latest

Expand All @@ -80,12 +80,12 @@ jobs:
with:
node-version: 22

- name: Set up Python
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.12

- name: Install Deployment Tools
- name: Install Publishing Tools
run: |
pip install bump-my-version
npm install
Expand Down

0 comments on commit 007376d

Please sign in to comment.