Skip to content

Releases

Releases #5

Workflow file for this run

name: Releases
on:
create:
tag:
- "v*"
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
#
- name: Checkout repository
uses: actions/checkout@v3
#
- name: Authenticate as UbiquiBot
uses: tibdex/[email protected]
id: get_installation_token
with:
app_id: ${{ secrets.UBIQUITY_BOUNTY_BOT_APP_ID }}
private_key: ${{ secrets.UBIQUITY_BOUNTY_BOT_PRIVATE_KEY }}
#
- name: Create Release
uses: ncipollo/[email protected]
with:
token: ${{ steps.get_installation_token.outputs.token }}