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 b9cf503 commit c950ce3Copy full SHA for c950ce3
.github/workflows/nightly-build.yml
@@ -111,7 +111,7 @@ jobs:
111
id: check-dh-login
112
run: |
113
if [[ -n "${{secrets.DOCKERHUB_GB_TOKEN}}" && -n "${{secrets.DOCKERHUB_GB_USER}}" ]] ; then
114
- echo "::set-output name=secrets_present::true"
+ echo "secrets_present=true" >> $GITHUB_OUTPUT
115
else
116
echo "No Docker Hub login data found. Skipping Docker."
117
fi
@@ -163,7 +163,7 @@ jobs:
163
gbver=${gbver##*gitblit-}
164
echo "Version detected: $gbver"
165
echo "GITBLIT_VERSION=$gbver" >> "${GITHUB_ENV}"
166
- echo "::set-output name=gb-version::$gbver"
+ echo "gb-version=$gbver" >> $GITHUB_OUTPUT
167
168
- name: Generate Dockerfile for snapshot image
169
working-directory: ../gitblit-docker
0 commit comments