Skip to content

Commit

Permalink
manually fix release workflow
Browse files Browse the repository at this point in the history
Signed-off-by: denis-tingaikin <denis.tingajkin@xored.com>
  • Loading branch information
denis-tingaikin committed Apr 9, 2024
1 parent 4e8784c commit 92b1f34
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,22 @@ jobs:
create-release:
name: Create release
needs: [get-tag, replace-params]
uses: networkservicemesh/.github/.github/workflows/release.yaml@main
secrets:
token: ${{ secrets.NSM_BOT_GITHUB_TOKEN }}
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: refs/heads/${{ github.event.ref }}
- name: Push tag ${{ needs.get-tag.outputs.tag }}
run: |
git status
git tag ${{ needs.get-tag.outputs.tag }}
git push origin ${{ needs.get-tag.outputs.tag }} -f
- name: Create release ${{ needs.get-tag.outputs.tag }}
run: |
gh release create ${{ needs.get-tag.outputs.tag }} --title ${{ needs.get-tag.outputs.tag }} --target ${{ github.event.ref }} --generate-notes
env:
GH_TOKEN: ${{ secrets.NSM_BOT_GITHUB_TOKEN }}

update-dependent-repositories:
strategy:
Expand Down

0 comments on commit 92b1f34

Please sign in to comment.