Skip to content

build(deps): bump igdb-api-v4 from 0.2.0 to 0.3.2 #4

build(deps): bump igdb-api-v4 from 0.2.0 to 0.3.2

build(deps): bump igdb-api-v4 from 0.2.0 to 0.3.2 #4

Workflow file for this run

---
name: CI
on:
pull_request:
branches: [master]
types: [opened, synchronize, reopened]
push:
branches: [master]
workflow_dispatch:
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Release
id: setup_release
uses: LizardByte/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Create/Update GitHub Release
if: >-
(github.event_name == 'push' && github.ref == 'refs/heads/master') &&
steps.setup_release.outputs.publish_release == 'true'
uses: LizardByte/[email protected]
with:
allowUpdates: true
artifacts: ""
body: ${{ steps.setup_release.outputs.release_body }}
discussionCategory: announcements
generateReleaseNotes: ${{ steps.setup_release.outputs.release_generate_release_notes }}
name: ${{ steps.setup_release.outputs.release_tag }}
prerelease: ${{ steps.setup_release.outputs.publish_pre_release }}
tag: ${{ steps.setup_release.outputs.release_tag }}
token: ${{ secrets.GH_BOT_TOKEN }}