Skip to content

Commit

Permalink
TECH-1140 Reference main branch composite actions temporarily until r…
Browse files Browse the repository at this point in the history
…elative references work or composite actions have been moved to another repository.
  • Loading branch information
tonisojandu-sympower committed Oct 23, 2023
1 parent 0d74a16 commit 8aa8460
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release-for-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,27 +20,27 @@ jobs:
steps:
- id: setup-build-environment
name: "Setup build environment"
uses: sympower/sympower-actions/.github/actions/setup-build-environment@TECH-1140-split-workflow-into-composite-actions
uses: sympower/sympower-actions/.github/actions/setup-build-environment@main
with:
secrets: ${{ env.secrets }}
- id: format-version
name: "Format version"
uses: sympower/sympower-actions/.github/actions/format-version@TECH-1140-split-workflow-into-composite-actions
uses: sympower/sympower-actions/.github/actions/format-version@main
with:
style-as-release: ${{ env.IS_DEFAULT_BRANCH }}
- id: build-and-upload-docker-image
name: "Build and upload Docker Image"
uses: sympower/sympower-actions/.github/actions/build-and-upload-docker-image@TECH-1140-split-workflow-into-composite-actions
uses: sympower/sympower-actions/.github/actions/build-and-upload-docker-image@main
with:
version: ${{ steps.format-version.outputs.version }}
- id: upload-schema
name: "Upload schema"
uses: sympower/sympower-actions/.github/actions/upload-schema@TECH-1140-split-workflow-into-composite-actions
uses: sympower/sympower-actions/.github/actions/upload-schema@main
with:
secrets: ${{ env.secrets }}
version: ${{ steps.format-version.outputs.version }}
gistID: "not-used"
- id: upload-build-artifacts
name: "Upload build artifacts"
if: always()
uses: sympower/sympower-actions/.github/actions/upload-build-artifacts@TECH-1140-split-workflow-into-composite-actions
uses: sympower/sympower-actions/.github/actions/upload-build-artifacts@main
18 changes: 9 additions & 9 deletions .github/workflows/release-new-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,26 @@ jobs:
steps:
- id: setup-build-environment
name: "Setup build environment"
uses: sympower/sympower-actions/.github/actions/setup-build-environment@TECH-1140-split-workflow-into-composite-actions
uses: sympower/sympower-actions/.github/actions/setup-build-environment@main
with:
secrets: ${{ env.secrets }}
- id: format-version
name: "Format version"
uses: sympower/sympower-actions/.github/actions/format-version@TECH-1140-split-workflow-into-composite-actions
uses: sympower/sympower-actions/.github/actions/format-version@main
with:
style-as-release: ${{ env.IS_DEFAULT_BRANCH }}
- id: run-tests
name: "Run tests"
uses: sympower/sympower-actions/.github/actions/run-tests@TECH-1140-split-workflow-into-composite-actions
uses: sympower/sympower-actions/.github/actions/run-tests@main
- id: code-analysis
name: "Code analysis"
uses: sympower/sympower-actions/.github/actions/code-analysis@TECH-1140-split-workflow-into-composite-actions
uses: sympower/sympower-actions/.github/actions/code-analysis@main
with:
secrets: ${{ env.secrets }}
- id: build-and-upload-docker-image
name: "Build and upload Docker Image"
if: env.IS_DEFAULT_BRANCH == 'true'
uses: sympower/sympower-actions/.github/actions/build-and-upload-docker-image@TECH-1140-split-workflow-into-composite-actions
uses: sympower/sympower-actions/.github/actions/build-and-upload-docker-image@main
with:
version: ${{ steps.format-version.outputs.version }}
- name: Update Service Version Badge
Expand All @@ -59,26 +59,26 @@ jobs:
- id: upload-schema
name: "Upload schema"
if: env.IS_DEFAULT_BRANCH == 'true'
uses: sympower/sympower-actions/.github/actions/upload-schema@TECH-1140-split-workflow-into-composite-actions
uses: sympower/sympower-actions/.github/actions/upload-schema@main
with:
version: ${{ steps.format-version.outputs.version }}
secrets: ${{ env.secrets }}
gistID: ${{ inputs.gistID }}
- id: upload-pacts
name: "Upload pacts"
if: env.IS_DEFAULT_BRANCH == 'true'
uses: sympower/sympower-actions/.github/actions/upload-pacts@TECH-1140-split-workflow-into-composite-actions
uses: sympower/sympower-actions/.github/actions/upload-pacts@main
with:
version: ${{ steps.format-version.outputs.version }}
- id: deploy-staging
name: "Deploy staging"
if: env.IS_DEFAULT_BRANCH == 'true'
uses: sympower/sympower-actions/.github/actions/deploy-staging@TECH-1140-split-workflow-into-composite-actions
uses: sympower/sympower-actions/.github/actions/deploy-staging@main
with:
secrets: ${{ env.secrets }}
version: ${{ steps.format-version.outputs.version }}
default-name: ${{ env.REPOSITORY_NAME }}
- id: upload-build-artifacts
name: "Upload build artifacts"
if: always()
uses: sympower/sympower-actions/.github/actions/upload-build-artifacts@TECH-1140-split-workflow-into-composite-actions
uses: sympower/sympower-actions/.github/actions/upload-build-artifacts@main

0 comments on commit 8aa8460

Please sign in to comment.