Skip to content

Commit

Permalink
fix(test): test
Browse files Browse the repository at this point in the history
  • Loading branch information
masoudmanson committed Sep 6, 2023
1 parent df77290 commit 413e04f
Showing 1 changed file with 11 additions and 14 deletions.
25 changes: 11 additions & 14 deletions .github/workflows/gh-release-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,14 @@ jobs:
echo $version
done
# - name: Create Release
# id: create_release
# if: steps.tag_check.outputs.exists_tag == 'true'
# uses: actions/create-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: v${{ env.CURRENT_VERSIONS }}
# # Copy Pull Request's title and body to Release Note
# release_name: ${{ github.event.pull_request.title }}
# body: |
# ${{ github.event.pull_request.body }}
# draft: false
# prerelease: false
- name: Run Version Check and Tag for Each Version
run: |
for version in $(echo $CURRENT_VERSIONS | tr ',' ' '); do
echo "Creating job for version $version..."
echo "::set-output name=version::$version"
done
- name: Create Release
if: steps.set_versions.outcome == 'success'
run: |
echo "Running release job for individual tag ${{ steps.set_versions.outputs.version }}"

0 comments on commit 413e04f

Please sign in to comment.