Moved Christmas start day from 7th to 12th #16
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: Trigger Main Build Pipeline | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
trigger-main-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger Build Workflow | |
uses: peter-evans/repository-dispatch@v3 | |
with: | |
token: ${{ secrets.BUILD_REPO_ACCESS_TOKEN }} | |
repository: sp-tarkov/build | |
event-type: build-trigger | |
client-payload: | | |
{ | |
"repository": "${{ github.repository }}", | |
"tag": "${{ github.ref_name }}" | |
} |