From e24ca07d41427204e384d30f917b36e5a6fd9772 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Salom=C3=A9=20Voltz?= Date: Mon, 17 Jun 2024 14:57:24 +0200 Subject: [PATCH] modified workflow for testing --- .github/workflows/tag.yml | 39 ++++++++++++++++++++++++--------------- 1 file changed, 24 insertions(+), 15 deletions(-) diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 4c950dd..456f2eb 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -3,22 +3,31 @@ name: Application Release on: push: tags: - - "v*" + - "test" jobs: - release: + # release: + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v2 + # - name: Create Release + # id: create_release + # uses: actions/create-release@v1 + # env: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token + # with: + # tag_name: ${{ github.ref }} + # release_name: ${{ github.ref }} + # body: | + # ## Changelog + # draft: false + # prerelease: false + tag: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: Create Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token - with: - tag_name: ${{ github.ref }} - release_name: ${{ github.ref }} - body: | - ## Changelog - draft: false - prerelease: false + - name: Update v1 tag + id: update_v1_tag + run: | + echo "test" + echo $ {{ github.ref}} + echo ${{ github.event.inputs.major_version }} ${{ github.event.inputs.target }} \ No newline at end of file