Skip to content

Get latest PyTorch version release branch #161

Get latest PyTorch version release branch

Get latest PyTorch version release branch #161

name: Get latest PyTorch version release branch
on:
workflow_dispatch:
env:
working_branch: support/new-pytorch-release-branch
base_branch: release/1.2.x
permissions:
contents: write
issues: write
pull-requests: write
jobs:
get-version:
runs-on: ubuntu-latest
if: ${{ github.repository }} == 'hemlholtz-analytics/heat'
steps:
- uses: actions/checkout@v4
with:
ref: '${{ env.base_branch }}'
- name: Fetch PyTorch release version
run: |
curl -sL https://api.github.com/repos/pytorch/pytorch/releases/latest | \
jq -r ".tag_name" | tr -d 'v' > .github/pytorch-release-versions/pytorch-latest.txt
- name: Check if file has been modified
id: git-check
run: echo "::set-output name=modified::$([ -z "`git status --porcelain`" ] && echo "false" || echo "true")"
- name: Delete working branch if it already exists
run: git push --delete origin ${{ env.working_branch }} || true
- name: Commit latest PyTorch release version to new branch
if: ${{ steps.git-check.outputs.modified == 'true' }}
run: |
git checkout -b ${{ env.working_branch }}
echo "new=$(<.github/pytorch-release-versions/pytorch-latest.txt)" >> $GITHUB_ENV
git config --global user.name 'ClaudiaComito'
git config --global user.email 'c.comito@fz-juelich.de@users.noreply.github.com'
git commit -am "New PyTorch release ${{ env.new }}"
git push --set-upstream origin ${{ env.working_branch }}
call-workflow:
uses: ./.github/workflows/latest-pytorch-support.yml

Check failure on line 38 in .github/workflows/pytorch-latest-release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pytorch-latest-release.yml

Invalid workflow file

error parsing called workflow ".github/workflows/pytorch-latest-release.yml" -> "./.github/workflows/latest-pytorch-support.yml" (source branch with sha:caeaaebfa4e6348923d189b56ae9b19190b314bc) : You have an error in your yaml syntax on line 65