We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64210fc commit 7e5e845Copy full SHA for 7e5e845
action.yml
@@ -21,3 +21,17 @@ runs:
21
using: "composite"
22
steps:
23
- uses: actions/checkout@v2
24
+
25
+ - name: Generate tag list
26
+ id: generate-tag-list
27
+ env:
28
+ REPO: ${{ inputs.repo }}
29
+ run: |
30
+ docker_repo=${GITHUB_REPOSITORY/opensciencegrid\/docker-/opensciencegrid/}
31
+ if [ -z "${{ inputs.tag_list }}" ]; then
32
+ tag_list=$docker_repo:$REPO,$docker_repo:$(date +%Y%m%d-%H%M)
33
+ else
34
+ tag_list=${{ inputs.tag_list }}
35
+ fi
36
+ echo "::set-output name=taglist::$tag_list"
37
+ shell: bash
0 commit comments