Skip to content

Commit

Permalink
added tag_name in release
Browse files Browse the repository at this point in the history
  • Loading branch information
faisalraja committed Feb 20, 2024
1 parent 43a2d3a commit 85488f6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release_mobile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,10 @@ jobs:
script: |
const fs = require('fs').promises;
const { repo: { owner, repo }, sha, runNumber } = context;
const tag_name = 'v2.5.' + runNumber;
const release = await github.repos.createRelease({
owner, repo,
name: 'Mobile v2.5.' + runNumber,
owner, repo, tag_name,
name: 'Mobile ' + tag_name,
draft: false,
target_commitish: sha
});
Expand Down

0 comments on commit 85488f6

Please sign in to comment.