Skip to content

Commit

Permalink
indent again
Browse files Browse the repository at this point in the history
  • Loading branch information
McCallisterRomer committed May 30, 2024
1 parent 0e7dce4 commit 51ebc31
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions .github/workflows/build-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,29 +130,29 @@ jobs:
path: VulkanSDK

publish:
- name: Draft Release
runs-on: ubuntu-latest
needs: build
steps:
- name: Download Artifacts
uses: actions/download-artifact@v2
with:
pattern: vulkanCI-*-.zip
path: artifacts
merge-multiple: true

- name: Create Release
env:
GH_TOKEN: ${{ github.token }}
GH_REPO: NcStudios/VulkanCI
run: |
ls -R artifacts
gh release create ${{ inputs.releaseTag }} \
--draft \
--title "VulkanCI ${{ inputs.releaseTag }}" \
--generate-notes \
for file in artifacts/*; do
gh release upload ${{ inputs.releaseTag }} $file
done
name: Draft Release
runs-on: ubuntu-latest
needs: build
steps:
- name: Download Artifacts
uses: actions/download-artifact@v2
with:
pattern: vulkanCI-*-.zip
path: artifacts
merge-multiple: true

- name: Create Release
env:
GH_TOKEN: ${{ github.token }}
GH_REPO: NcStudios/VulkanCI
run: |
ls -R artifacts
gh release create ${{ inputs.releaseTag }} \
--draft \
--title "VulkanCI ${{ inputs.releaseTag }}" \
--generate-notes \
for file in artifacts/*; do
gh release upload ${{ inputs.releaseTag }} $file
done

0 comments on commit 51ebc31

Please sign in to comment.