From: Dmitry Misharov Date: Tue, 23 Jun 2026 13:10:30 +0000 (+0200) Subject: remove make-release.yml, it will be executed on OpenSSL Jenkins instance X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=93a2b9be5ee0a438474f7a9b35d7edbaeb6f4311;p=thirdparty%2Fopenssl.git remove make-release.yml, it will be executed on OpenSSL Jenkins instance Reviewed-by: Eugene Syromiatnikov Reviewed-by: Bob Beck MergeDate: Thu Jun 25 07:04:01 2026 (Merged from https://github.com/openssl/openssl/pull/31674) --- diff --git a/.github/workflows/make-release.yml b/.github/workflows/make-release.yml deleted file mode 100644 index 746da6e0591..00000000000 --- a/.github/workflows/make-release.yml +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 2021-2026 The OpenSSL Project Authors. All Rights Reserved. -# -# Licensed under the Apache License 2.0 (the "License"). You may not use -# this file except in compliance with the License. You can obtain a copy -# in the file LICENSE in the source distribution or at -# https://www.openssl.org/source/license.html - -name: "Make release" - -on: - push: - tags: - - "openssl-*" - -permissions: {} - -jobs: - release: - runs-on: "releaser" - steps: - - name: "Checkout" - uses: "actions/checkout@v6" - with: - fetch-depth: 1 - ref: ${{ github.ref_name }} - github-server-url: "https://github.openssl.org/" - repository: "openssl/openssl" - token: ${{ secrets.GHE_TOKEN }} - path: ${{ github.ref_name }} - persist-credentials: false - - name: "Prepare assets" - env: - SIGNING_KEY_UID: ${{ vars.signing_key_uid }} - run: | - cd "$GITHUB_REF_NAME" - ./util/mktar.sh - mkdir -p assets && mv "$GITHUB_REF_NAME.tar.gz" assets/ && cd assets - openssl sha1 -r "$GITHUB_REF_NAME.tar.gz" > "$GITHUB_REF_NAME.tar.gz.sha1" - openssl sha256 -r "$GITHUB_REF_NAME.tar.gz" > "$GITHUB_REF_NAME.tar.gz.sha256" - gpg -u "$SIGNING_KEY_UID" -o "$GITHUB_REF_NAME.tar.gz.asc" -sba "$GITHUB_REF_NAME.tar.gz" - - name: "Create release" - env: - GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} - run: | - VERSION=$(echo "$GITHUB_REF_NAME" | cut -d "-" -f 2-) - PRE_RELEASE=$([[ "$GITHUB_REF_NAME" =~ alpha|beta ]] && echo "-p" || echo "") - NOTES=$(curl -s "https://api.openssl.org/release-metadata/news/?version=$VERSION&capture_title=False") - gh release create "$GITHUB_REF_NAME" $PRE_RELEASE -t "OpenSSL $VERSION" -d --notes "$NOTES" -R "$GITHUB_REPOSITORY" "$GITHUB_REF_NAME/assets/"*