-
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.
feat!: update gradle to 8.5 (#92129)
* added docker preparation to workflows
- Loading branch information
1 parent
581c0be
commit 9d9b356
Showing
3 changed files
with
22 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Preparations for later docker usage | ||
description: prepares the access to docker.io and builds an image using createimage.sh | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Run docker login | ||
shell: bash | ||
run: echo ${{ inputs.docker-password }} | docker login -u ${{ inputs.docker-user }} --password-stdin | ||
- name: Create Test container | ||
shell: bash | ||
run: cd testdocker && ./createimage.sh && cd .. |
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 |
---|---|---|
|
@@ -21,5 +21,10 @@ jobs: | |
steps: | ||
- name: Setup | ||
uses: IntershopCommunicationsAG/.github/actions/[email protected] | ||
- name: Prepare Docker | ||
uses: ./.github/actions/prepare-docker | ||
with: | ||
docker-user: ${{ secrets.DOCKERUSER }} | ||
docker-password: ${{ secrets.DOCKERPASSWD }} | ||
- name: Build | ||
uses: IntershopCommunicationsAG/.github/actions/[email protected] |
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 |
---|---|---|
|
@@ -19,6 +19,11 @@ jobs: | |
steps: | ||
- name: Setup | ||
uses: IntershopCommunicationsAG/.github/actions/[email protected] | ||
- name: Prepare Docker | ||
uses: ./.github/actions/prepare-docker | ||
with: | ||
docker-user: ${{ secrets.DOCKERUSER }} | ||
docker-password: ${{ secrets.DOCKERPASSWD }} | ||
- name: Release | ||
uses: IntershopCommunicationsAG/.github/actions/[email protected] | ||
with: | ||
|