From 02888cfedfe8aaa79861fdfcf5366e0df1fa3e34 Mon Sep 17 00:00:00 2001 From: Oleksandr Lystopad Date: Wed, 31 Jul 2024 13:14:50 +0200 Subject: [PATCH] . --- .github/workflow/release.yml | 49 --------------------------- .github/workflows/testing-release.yml | 5 +++ 2 files changed, 5 insertions(+), 49 deletions(-) delete mode 100644 .github/workflow/release.yml diff --git a/.github/workflow/release.yml b/.github/workflow/release.yml deleted file mode 100644 index 565ba8b..0000000 --- a/.github/workflow/release.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: Release -run-name: "Testing release workflow" - -env: - APPLICATION: "test-app" - GOLANG_BUILDER_VERSION: "1.22-bookworm" - TARGET_BASE_VERSION: "bookworm-20240722" - PACKAGE_NAME: "github.com/erigontech/erigon" - DOCKERHUB_REPOSITORY: "erigontech/dev-erigon" - BUILD_TAGS: "nosqlite,noboltdb,nosilkworm" - VERSION: "2.65.4" - VERSION_TMP: ".." - -on: - push: - #branches-ignore: - # - '**' - #branches: - # - 'master' - #tags: - ## only trigger on release tags: - #- 'v*.*.*' - #- 'v*.*.*-*' - workflow_dispatch: - inputs: - release_version: - required: true - type: string - description: 'Release version number (v#.#.#) which will be used to checkout branch' - dry_run: - required: true - type: boolean - description: 'When dry_run=true no artifacts would be published and release notes draft only will be prepared' - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout github repo - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - steps: - - name: Debug - run: | - echo The value of dry_run is ${{ inputs.dry_run}} and the value of the release_version is ${{ inputs.release_version }} - \ No newline at end of file diff --git a/.github/workflows/testing-release.yml b/.github/workflows/testing-release.yml index 95f857f..eb60ba6 100644 --- a/.github/workflows/testing-release.yml +++ b/.github/workflows/testing-release.yml @@ -41,3 +41,8 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 + + - name: Debug + run: | + echo The value of dry_run is ${{ inputs.dry_run}} and the value of the release_version is ${{ inputs.release_version }} + \ No newline at end of file