Skip to content

Commit

Permalink
fix file name
Browse files Browse the repository at this point in the history
  • Loading branch information
RomarQ committed Jan 25, 2025
1 parent 0eb5820 commit e9c8add
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/subxt-diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ jobs:
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Lookup previous runtime release build
run: |
COMMIT=`git rev-list -n 1 '${{ github.event.inputs.last_spec_version }}'`
COMMIT=`git rev-list -n 1 'runtim-${{ github.event.inputs.last_spec_version }}'`
PREVIOUS_RUNTIME_BUILD=$(gh run -R moonbeam-foundation/moonbeam list -w Build --limit=100 --json databaseId,status,conclusion,headSha --jq ".[] | select(.headSha == \"$COMMIT\" and .status == \"completed\" and .conclusion == \"success\") | .databaseId" | head -n 1)
echo "Latest build for ${{ github.event.inputs.last_spec_version }}: $PREVIOUS_RUNTIME_BUILD"
echo "Latest build for runtim-${{ github.event.inputs.last_spec_version }}: $PREVIOUS_RUNTIME_BUILD"
echo "PREVIOUS_RUNTIME_BUILD=$PREVIOUS_RUNTIME_BUILD" >> $GITHUB_OUTPUT
- name: Lookup previous runtime release build
run: |
COMMIT=`git rev-list -n 1 '${{ github.event.inputs.spec_version }}'`
COMMIT=`git rev-list -n 1 'runtim-${{ github.event.inputs.spec_version }}'`
RUNTIME_BUILD=$(gh run -R moonbeam-foundation/moonbeam list -w Build --limit=100 --json databaseId,status,conclusion,headSha --jq ".[] | select(.headSha == \"$COMMIT\" and .status == \"completed\" and .conclusion == \"success\") | .databaseId" | head -n 1)
echo "Latest build for ${{ github.event.inputs.spec_version }}: $RUNTIME_BUILD"
echo "Latest build for runtim-${{ github.event.inputs.spec_version }}: $RUNTIME_BUILD"
echo "NEXT_RUNTIME_BUILD=$RUNTIME_BUILD" >> $GITHUB_OUTPUT
- name: Download binaries for each runtime
run: |
Expand Down

0 comments on commit e9c8add

Please sign in to comment.