Skip to content

ColocateNodes=true on HPC partititions (#1886) #71

ColocateNodes=true on HPC partititions (#1886)

ColocateNodes=true on HPC partititions (#1886) #71

Workflow file for this run

#
# Copyright (c) Microsoft Corporation
# Licensed under the MIT License.
#
name : changelog
on:
push:
tags:
- 'v1.*'
jobs:
release:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
permissions:
actions: read
checks: read
contents: write
deployments: read
issues: read
discussions: read
packages: read
pages: read
pull-requests: read
repository-projects: read
security-events: read
statuses: read
steps:
- uses: actions/checkout@v4
- name: Build Changelog
id: github_release
uses: mikepenz/release-changelog-builder-action@v4
with:
configuration: ".github/workflows/changelog_configuration.json"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - run: |
# version=${{ github.ref }}
# echo ${version##*/} > version.txt
# - uses: EndBug/[email protected]
# with:
# message: 'Update version file'
# add: 'version.txt --force'
# branch: main
- name: Create Release
uses: softprops/action-gh-release@v2
with:
#tag_name: ${{ github.ref }}
#name: ${{ github.ref }}
body: ${{steps.github_release.outputs.changelog}}
prerelease: ${{ contains(github.ref, '-rc') || contains(github.ref, '-b') || contains(github.ref, '-a') }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}