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.
2 parents f4edb72 + eae8d09 commit 5df251dCopy full SHA for 5df251d
.github/workflows/release-packages.yaml
@@ -210,20 +210,16 @@ jobs:
210
211
push-docker-image-dockerhub:
212
runs-on: ubuntu-20.04
213
- env:
214
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
215
steps:
216
- name: Checkout CBMC source
217
uses: actions/checkout@v2
218
with:
219
submodules: recursive
220
- - name: Get release info
221
- id: get_release_info
222
- uses: bruceadams/[email protected]
223
- name: Set Image Tag
224
run: |
225
- echo ${{ steps.get_release_info.outputs.tag_name }}
226
- VERSION = ${{ steps.get_release_info.outputs.tag_name }}
+ echo ${{ github.ref }}
+ echo $GITHUB_REF
+ echo $GITHUB_REF | cut -d "/" -f 3 >> $VERSION
227
arrVERSION=(${VERSION//-/ })
228
echo "IMAGE_TAG=diffblue/cbmc:${arrVERSION[1]}" >> $GITHUB_ENV
229
- name: Build docker image
0 commit comments