Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jennydaman committed Jun 6, 2023
1 parent 42ee3b4 commit 4fb7e14
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: FNNDSC/cube-integration-action@v6
- uses: FNNDSC/cube-integration-action@master
with:
repository: ${{ github.workspace }}
which: all
Expand All @@ -29,7 +29,7 @@ jobs:
- name: Get git tag
id: git_info
if: startsWith(github.ref, 'refs/tags/')
run: echo "::set-output name=tag::${GITHUB_REF##*/}"
run: echo "tag=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
- name: Determine image tags
id: determine
env:
Expand All @@ -43,9 +43,9 @@ jobs:
tag="${tag:1}"
fi
echo "::set-output name=repo::$repo"
echo "::set-output name=tag::$tag"
echo "::set-output name=dock_image::$repo:$tag"
dock_image=$repo:$tag
echo $dock_image
echo "dock_image=$dock_image" >> $GITHUB_OUTPUT
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v2
Expand Down

0 comments on commit 4fb7e14

Please sign in to comment.