Skip to content

Commit

Permalink
setup prerelease name
Browse files Browse the repository at this point in the history
  • Loading branch information
aryairani committed Mar 25, 2024
1 parent 35f3101 commit dba1c33
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/pre-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,15 @@ jobs:
with:
path: /tmp/ucm

- name: set up release name
run: |
tag_name=$(echo "${{ github.ref }}" | awk -F'/' '{print $NF}')
echo "tag_name=$tag_name" >> $GITHUB_ENV
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: ${{ github.ref }}-build
automatic_release_tag: ${{ env.tag_name }}-build
prerelease: true
title: Development Build
files: |
Expand Down

0 comments on commit dba1c33

Please sign in to comment.