Skip to content

Commit

Permalink
Updates per changes in style conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjs committed Aug 5, 2024
1 parent ac51bcd commit 41cd7c3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ on:
branches: [main]

jobs:
ci-build:
CiBuild:
name: CI Build
uses: connorjs/github-workflows/.github/workflows/npm-ci-build~v1.yaml@features/npm-ci-build

pipeline-tests:
PipelineTests:
name: Test (${{ matrix.node }} | ${{ matrix.platform.os }})
if: false
defaults:
Expand Down Expand Up @@ -92,15 +92,15 @@ jobs:
run: |
scripts/test.sh foo custom-config-path.config.mjs '-c .config/custom-config-path.config.mjs'
publish:
Publish:
name: Publish
if: ${{ github.ref == 'refs/heads/main' }}
needs:
- ci-build # For version variable
- pipeline-tests # Requires passing tests
- CiBuild # For version variable
- PipelineTests # Requires passing tests
runs-on: ubuntu-latest
env:
semVer: ${{needs.ci-build.outputs.semVer}}
semVer: ${{needs.CiBuild.outputs.semVer}}
permissions:
contents: write
id-token: write
Expand Down

0 comments on commit 41cd7c3

Please sign in to comment.