Skip to content

feat: add Google Analytics #119

feat: add Google Analytics

feat: add Google Analytics #119

Workflow file for this run

name: Releases
on:
push:
branches:
- main
jobs:
changelog:
name: Create Release and Changelog
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Changelog + Version update
id: changelog
uses: TriPSs/conventional-changelog-action@v3
with:
github-token: ${{ secrets.PA_TOKEN }}
version-file: './version.yaml'
- name: Create Release
if: steps.changelog.outputs.skipped == 'false'
uses: ncipollo/release-action@v1
with:
token: ${{ secrets.PA_TOKEN }}
tag : ${{ steps.changelog.outputs.tag }}
name: ${{ steps.changelog.outputs.tag }}
body: ${{ steps.changelog.outputs.clean_changelog }}