-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #3673: start with a local composite action
- Loading branch information
1 parent
193516d
commit 1cb4509
Showing
3 changed files
with
47 additions
and
2 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,29 @@ | ||
%YAML 1.1 | ||
--- | ||
|
||
# Local composite action for building Docker images and pushing them to Docker Hub. | ||
# Intended to be uses by the workflows docker_image_builder_rel.yml and | ||
# docker_image_builder_devel.yml | ||
name: 'DockerImageBuilder' | ||
|
||
description: 'Composite action for building Docker images and pushing them to Docker Hub' | ||
|
||
inputs: | ||
dummy-input: | ||
description: 'only as a test' | ||
required: true | ||
|
||
outputs: | ||
|
||
runs: | ||
|
||
using: 'composite' | ||
|
||
steps: | ||
|
||
- name: 'devel output' | ||
run: | | ||
echo 'inputs.dummy-input: ${{ inputs.dummy-input }}' | ||
- name: 'Set up Docker Buildx' | ||
uses: docker/setup-buildx-action@v3 |
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