Skip to content

Commit 4fb7e14

Browse files
committed
Update ci.yml
1 parent 42ee3b4 commit 4fb7e14

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-22.04
1414
steps:
1515
- uses: actions/checkout@v3
16-
- uses: FNNDSC/cube-integration-action@v6
16+
- uses: FNNDSC/cube-integration-action@master
1717
with:
1818
repository: ${{ github.workspace }}
1919
which: all
@@ -29,7 +29,7 @@ jobs:
2929
- name: Get git tag
3030
id: git_info
3131
if: startsWith(github.ref, 'refs/tags/')
32-
run: echo "::set-output name=tag::${GITHUB_REF##*/}"
32+
run: echo "tag=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
3333
- name: Determine image tags
3434
id: determine
3535
env:
@@ -43,9 +43,9 @@ jobs:
4343
tag="${tag:1}"
4444
fi
4545
46-
echo "::set-output name=repo::$repo"
47-
echo "::set-output name=tag::$tag"
48-
echo "::set-output name=dock_image::$repo:$tag"
46+
dock_image=$repo:$tag
47+
echo $dock_image
48+
echo "dock_image=$dock_image" >> $GITHUB_OUTPUT
4949
- uses: actions/checkout@v3
5050
- uses: docker/setup-qemu-action@v2
5151
- uses: docker/setup-buildx-action@v2

0 commit comments

Comments
 (0)