Skip to content

Commit

Permalink
ci: disable debian and try ubuntu upload
Browse files Browse the repository at this point in the history
  • Loading branch information
frank-w authored Mar 29, 2024
1 parent 8472cb2 commit bccf1db
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,22 +55,22 @@ jobs:
sudo apt update
sudo apt install python3 parted qemu-user-static debootstrap binfmt-support
- name: Build R64 Debian ${{ env.DISTRO }} Image
run: |
./buildimg.sh bpi-r64 ${{ env.DISTRO }}
#- name: Build R64 Debian ${{ env.DISTRO }} Image
# run: |
# ./buildimg.sh bpi-r64 ${{ env.DISTRO }}

- name: Build R2Pro Debian ${{ env.DISTRO }} Image
run: |
./buildimg.sh bpi-r2pro ${{ env.DISTRO }}
#- name: Build R2Pro Debian ${{ env.DISTRO }} Image
# run: |
# ./buildimg.sh bpi-r2pro ${{ env.DISTRO }}

- name: Build R3 Debian ${{ env.DISTRO }} Image
run: |
./buildimg.sh bpi-r3 ${{ env.DISTRO }}
#- name: Build R3 Debian ${{ env.DISTRO }} Image
# run: |
# ./buildimg.sh bpi-r3 ${{ env.DISTRO }}

- name: Build R4 Debian ${{ env.DISTRO }} Image
run: |
echo -e "skipkerneldownload=1\nkernelfile=${{ env.R4Kernel }}" > sourcefiles_bpi-r4.conf
./buildimg.sh bpi-r4 ${{ env.DISTRO }}
#- name: Build R4 Debian ${{ env.DISTRO }} Image
# run: |
# echo -e "skipkerneldownload=1\nkernelfile=${{ env.R4Kernel }}" > sourcefiles_bpi-r4.conf
# ./buildimg.sh bpi-r4 ${{ env.DISTRO }}

- name: Build R3 Ubuntu ${{ env.UDISTRO }} Image
run: |
Expand All @@ -92,6 +92,8 @@ jobs:
uses: adityak74/google-drive-upload-git-action@main
with:
credentials: ${{ secrets.CREDENTIALS }}
filename: "*{${{ env.DISTRO }},${{ env.UDISTRO }}}*.img.gz"
filename: |
"*${{ env.DISTRO }}*.img.gz"
"*${{ env.UDISTRO }}*.img.gz"
folderId: ${{ secrets.FOLDERID }}
overwrite: "true" # optional boolean

0 comments on commit bccf1db

Please sign in to comment.