Skip to content

Commit

Permalink
ci(dev): attempt recreate tag ci
Browse files Browse the repository at this point in the history
  • Loading branch information
SARDONYX-sard committed Oct 9, 2023
1 parent 5daf3c8 commit 28246a7
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/dev-release-cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,11 @@ jobs:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const octokit = require('@octokit/rest')();
octokit.repos.createOrUpdateTag({
github.rest.git.createRef({
owner: context.repo.owner,
repo: context.repo.repo,
tag: 'development',
sha: ${{ github.sha }},
ref: 'refs/tags/development',
sha: context.sha
message: 'Tagging commit for development',
force: true
});
Expand Down

0 comments on commit 28246a7

Please sign in to comment.