-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds an option to auto-deploy the test image immediately to a desired environment.
- Loading branch information
1 parent
e249d6c
commit 79e293f
Showing
3 changed files
with
34 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,21 +31,29 @@ jobs: | |
steps: | ||
- id: setup-build-environment | ||
name: "Setup build environment" | ||
uses: sympower/sympower-composite-actions/setup-build-environment@2024.11.15.11.12-d7db6c0 | ||
uses: sympower/sympower-composite-actions/setup-build-environment@2024.12.05.16.28-2d0b46c | ||
with: | ||
secrets: ${{ env.secrets }} | ||
- id: format-version | ||
name: "Format version" | ||
uses: sympower/sympower-composite-actions/format-version@2024.11.15.11.12-d7db6c0 | ||
uses: sympower/sympower-composite-actions/format-version@2024.12.05.16.28-2d0b46c | ||
with: | ||
style-as-release: ${{ env.IS_DEFAULT_BRANCH }} | ||
- id: build-and-upload-docker-image | ||
name: "Build and upload Docker Image" | ||
uses: sympower/sympower-composite-actions/build-and-upload-docker-image@2024.11.15.11.12-d7db6c0 | ||
uses: sympower/sympower-composite-actions/build-and-upload-docker-image@2024.12.05.16.28-2d0b46c | ||
with: | ||
version: ${{ steps.format-version.outputs.version }} | ||
additional-gradle-args: ${{ inputs.additional-gradle-args }} | ||
- id: upload-build-artifacts | ||
name: "Upload build artifacts" | ||
if: always() | ||
uses: sympower/sympower-composite-actions/[email protected] | ||
uses: sympower/sympower-composite-actions/[email protected] | ||
- id: deploy-staging | ||
name: "Deploy to testing environment" | ||
uses: sympower/sympower-composite-actions/[email protected] | ||
with: | ||
secrets: ${{ env.secrets }} | ||
version: ${{ steps.format-version.outputs.version }} | ||
deploy-group: testing | ||
require-approval: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters