Skip to content

chore(updater): bump pkg/dist/*.yml (2024-11-19) (#226) #106

chore(updater): bump pkg/dist/*.yml (2024-11-19) (#226)

chore(updater): bump pkg/dist/*.yml (2024-11-19) (#226) #106

Workflow file for this run

name: Releaser
on:
push:
branches:
- main
paths:
- pkg/dist/**
jobs:
releaser:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- id: sha
run: echo "sha=${GITHUB_SHA::7}" >> $GITHUB_OUTPUT
- id: version
uses: anothrNick/github-tag-action@1.71.0
env:
GITHUB_TOKEN: ${{ github.token }}
WITH_V: true
- uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.version.outputs.new_tag }}
name: ${{ steps.version.outputs.new_tag }}
body: auto-generated release for commit ${{ steps.sha.outputs.sha }}