Skip to content

Commit

Permalink
feat: test
Browse files Browse the repository at this point in the history
  • Loading branch information
darkweaver87 committed Jan 10, 2025
1 parent 2ab44c8 commit 6b3a301
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/test-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Release Charts

on:
push:

env:
tag_prefix: v
crds_tag_prefix: crds_v

jobs:
traefik-crds:
needs: test
runs-on: ubuntu-latest
steps:

- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Render changelog configuration
env:
REGEXP: "crds"
run: |
export DATE=$(date +%F); cat .github/workflows/changelog.json | envsubst > /tmp/changelog.json; cat /tmp/changelog.json
- name: Build Changelog
id: changelog
uses: mikepenz/release-changelog-builder-action@v5
with:
toTag: crds_v1.0.0
configuration: "/tmp/changelog.json"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: debug
run: |
cat <<EOF
${{ steps.changelog.outputs.changelog }}
EOF

0 comments on commit 6b3a301

Please sign in to comment.