We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c129b6 commit c8d9b70Copy full SHA for c8d9b70
.github/workflows/release.yml
@@ -138,3 +138,15 @@ jobs:
138
asset_path: ./FreeRTOS-Plus-TCP-${{ github.event.inputs.version_number }}.zip
139
asset_name: FreeRTOS-Plus-TCP-${{ github.event.inputs.version_number }}.zip
140
asset_content_type: application/zip
141
+ cleanup:
142
+ needs:
143
+ - create-release
144
+ name: Cleanup
145
+ runs-on: ubuntu-latest
146
+ steps:
147
+ - name: Checkout code
148
+ uses: actions/checkout@v3
149
+ - name: Delete branch created for Tag by SBOM generator
150
+ run: |
151
+ # Delete the branch created for Tag by SBOM generator
152
+ git push -u origin --delete refs/heads/${{ github.event.inputs.version_number }}
0 commit comments