Skip to content

Commit

Permalink
modified workflow for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
salome-voltz committed Jun 17, 2024
1 parent 8f19f0b commit e24ca07
Showing 1 changed file with 24 additions and 15 deletions.
39 changes: 24 additions & 15 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit e24ca07

Please sign in to comment.