DAOS-15859 build: Move master to 2.7 test builds. (#14407) #4406
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: Create Release | |
# This workflow is triggered on pushes to the master branch of the repository. | |
on: | |
push: | |
paths: | |
- TAG | |
branches: | |
- master | |
- 'release/**' | |
permissions: {} | |
jobs: | |
make_release: | |
name: Create Release | |
if: github.repository == 'daos-stack/daos' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- uses: ./.github/actions/make_release | |
id: make_release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |