Skip to content

fix: branch

fix: branch #4

Workflow file for this run

name: Release
on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Update CHANGELOG
id: changelog
uses: requarks/changelog-action@v1
with:
token: ${{ github.token }}
tag: ${{ github.ref_name }}
writeToFile: false
includeInvalidCommits: true
- name: Create Release
uses: ncipollo/[email protected]
if: true
with:
allowUpdates: true
draft: false
makeLatest: true
prerelease: false
name: ${{ github.ref_name }}
body: ${{ steps.changelog.outputs.changes }}
token: ${{ github.token }}
- name: Update Private Composer Repository
uses: convictional/[email protected]
if: true
with:
owner: kduma-OSS
repo: composer.duma.dev
github_token: ${{ secrets.MONOREPO_SPLITTER_PERSONAL_ACCESS_TOKEN }}
github_user: kduma
workflow_file_name: satis.yml
ref: master
wait_interval: 10
client_payload: '{"repository-url": "https://github.com/kduma-archive/test-ci-git-split-library"}'
propagate_failure: false
trigger_workflow: true
wait_workflow: true