Skip to content
Snippets Groups Projects
Commit c3226ae2 authored by DHCPCD's avatar DHCPCD
Browse files

Update .gitlab-ci.yml file

parent 24464729
No related branches found
No related tags found
No related merge requests found
Pipeline #55 passed
......@@ -34,7 +34,6 @@ build-job: # This job runs in the build stage, which runs first.
- "dotnet build -c Release --output out/ --no-restore"
- "zip -r ${WINDOWS_X64_BINARY} out"
upload:
stage: upload
image: curlimages/curl:latest
......@@ -43,6 +42,8 @@ upload:
script:
- |
curl --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file bin/${WINDOWS_X64_BINARY} ${PACKAGE_REGISTRY_URL}/${WINDOWS_X64_BINARY}
dependencies:
- build-job
release:
stage: release
......@@ -53,4 +54,6 @@ release:
- |
release-cli create --name "Release $CI_COMMIT_TAG" --tag-name $CI_COMMIT_TAG \
--assets-link "{\"name\":\"${WINDOWS_X64_BINARY}\",\"url\":\"${PACKAGE_REGISTRY_URL}/${WINDOWS_X64_BINARY}\"}"
dependencies:
- build-job
- upload
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment