Skip to content

Fix missing changelog entries #73

Fix missing changelog entries

Fix missing changelog entries #73

Workflow file for this run

name: build
on:
push:
branches:
- main
- develop
- 'feature/**'
- 'release/**'
- 'hotfix/**'
- 'support/**'
tags:
- 'v*'
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Run build script
run: ./bin/build -vc
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: mod
path: build/*.zip
- name: Create release
uses: softprops/action-gh-release@v1
if: success() && startsWith(github.ref, 'refs/tags/v')
with:
draft: true
files: build/*.zip