Skip to content

Commit

Permalink
fix: remove old workflows and dropped merge lines
Browse files Browse the repository at this point in the history
  • Loading branch information
m2Giles committed Apr 9, 2024
1 parent f129b76 commit 8c0eb87
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 22 deletions.
11 changes: 0 additions & 11 deletions .github/workflows/build-aurora-iso.yml

This file was deleted.

11 changes: 0 additions & 11 deletions .github/workflows/build-bluefin-iso.yml

This file was deleted.

10 changes: 10 additions & 0 deletions .github/workflows/reusable-build-iso.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,16 @@ jobs:
compression-level: 0
overwrite: true

- name: Move ISOs to Upload Directory
id: upload-directory
shell: bash
run: |
ISO_UPLOAD_DIR=${{ github.workspace }}/upload
mkdir ${ISO_UPLOAD_DIR}
mv ${{ steps.build.outputs.iso_path }}/${{ steps.build.outputs.iso_name }} ${ISO_UPLOAD_DIR}
mv ${{ steps.build.outputs.iso_path }}/${{ steps.build.outputs.iso_name }}-CHECKSUM ${ISO_UPLOAD_DIR}
echo "iso-upload-dir=${ISO_UPLOAD_DIR}" >> $GITHUB_OUTPUT
- name: Upload ISOs and Checksum to R2
if: github.event_name == 'workflow_dispatch' && github.ref_name == 'main'
shell: bash
Expand Down

0 comments on commit 8c0eb87

Please sign in to comment.