crossing the streams
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(github/workflows): iterate on release docker to run for tags

+5 -1
+5 -1
.github/workflows/release-docker.yml
··· 41 41 - name: Determine image tag 42 42 id: image_tag 43 43 run: | 44 - if [[ "${{ github.ref_type }}" == "tag" ]]; then 44 + echo "GITHUB_REF: ${{ github.ref }}" 45 + echo "GITHUB_REF_NAME: ${{ github.ref_name }}" 46 + if [[ "${{ github.ref }}" == refs/tags/* ]]; then 47 + echo "This is a tag push." 45 48 echo "IMAGE_TAG=${{ github.ref_name }}" >> $GITHUB_ENV 46 49 else 50 + echo "This is a branch push." 47 51 echo "IMAGE_TAG=latest" >> $GITHUB_ENV 48 52 fi 49 53