Skip to content

Commit

Permalink
adding image list and upload.
Browse files Browse the repository at this point in the history
  • Loading branch information
SelfhostedPro committed Apr 22, 2024
1 parent 32d2f32 commit 45bcb9f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/armbian_custom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,26 @@ jobs:
#CONFIGS_TO_BOOT: 1
run: |
sudo --preserve-env bash -c "$(curl -sSfL 'https://raw.githubusercontent.com/MichaIng/DietPi/imager/.build/images/dietpi-imager')" -i build/output/images/*.img
- name: List all outputs
if: ${{ env.BUILD_DIETPI == 'true' }}
run: |
ls -R .
# Upload Armbian images to artifacts (we'll download them and add them to the release later).
- name: Upload DietPi Artifacts for Release
id: artifacts
uses: actions/upload-artifact@v4
with:
name: "dietpi-${{ matrix.ui }}-${{ matrix.release }}-${{ matrix.kernel }}"
path: |
./DietPi*.xz
./DietPi*.sha256
outputs:
armbian-artifacts: ${{ steps.artifacts.outputs.artifact-id }}


release:
runs-on: ubuntu-latest
needs: [build-armbian]
Expand Down

0 comments on commit 45bcb9f

Please sign in to comment.