Added Event_Handlers line #121
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: feature | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- feature/* | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
# first enable longpaths | |
- name: Support longpaths | |
run: git config --system core.longpaths true | |
# Checkout the code. | |
- uses: actions/checkout@v3 | |
# For the GitVersion to execute successfully, we need the checkout to fetch all gistory for all tags and branches (with fetch-depth: 0). | |
with: | |
fetch-depth: 0 | |
# Use the compose file action. | |
- uses: ./.github/actions/compose_and_publish_artifacts | |