downloadfiles: fix invalid escape warning for regex strings #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/main.yml | |
name: Main | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'gdrive-test' | |
workflow_dispatch: | |
jobs: | |
gdrive-upload: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup env | |
run: | | |
echo "DT=$(date +'%Y-%m-%d_%H%M')" >> $GITHUB_ENV | |
echo "DISTRO=bookworm" >> $GITHUB_ENV | |
echo "UDISTRO=noble" >> $GITHUB_ENV | |
#echo "R4Kernel=bpi-r4_6.8.0-rc7-dango2.tar.gz" >> $GITHUB_ENV | |
- name: Setup cache | |
id: cache | |
uses: actions/cache@v4 | |
with: | |
path: "*_arm*.tar.gz" | |
key: ${{ runner.os }}-chroot | |
restore-keys: ${{ runner.os }}-chroot | |
#- name: Acquire Google access token for file download | |
# id: google-access-token | |
# uses: playeveryware/action-google-access-token@v1 | |
# with: | |
# credentials: ${{ secrets.CREDENTIALS_RAW }} | |
# scope: 'https://www.googleapis.com/auth/drive.readonly' | |
#- name: Download BPI-R4 kernel file | |
# uses: playeveryware/action-google-drive-download@v1 | |
# with: | |
# token: ${{ steps.google-access-token.outputs.token }} | |
# file-id: 14IPr6_h0_NEe8ute6HXMUNACnHiaaab4 | |
# path: ${{ env.R4Kernel }} | |
#uses: satackey/action-google-drive@v1 | |
#with: | |
# skicka-tokencache-json: ${{ secrets.CREDENTIALS_RAW }} | |
# download-from: https://drive.google.com/file/d/14IPr6_h0_NEe8ute6HXMUNACnHiaaab4/view?usp=drive_link | |
# download-to: ./bpi-r4-kernel.tar.gz | |
- name: Install depencies | |
run: | | |
sudo apt update | |
sudo apt install python3 parted qemu-user-static debootstrap binfmt-support | |
# - name: Build R2 Debian ${{ env.DISTRO }} Image | |
# run: | | |
# ./buildimg.sh bpi-r2 ${{ 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 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 R2 Ubuntu ${{ env.UDISTRO }} Image | |
# run: | | |
# ./buildimg.sh bpi-r2 ${{ env.UDISTRO }} | |
# | |
# - name: Build R64 Ubuntu ${{ env.UDISTRO }} Image | |
# run: | | |
# ./buildimg.sh bpi-r64 ${{ env.UDISTRO }} | |
# - name: Build R2Pro Ubuntu ${{ env.UDISTRO }} Image | |
# run: | | |
# ./buildimg.sh bpi-r2pro ${{ env.UDISTRO }} | |
# - name: Build R3 Ubuntu ${{ env.UDISTRO }} Image | |
# run: | | |
# ./buildimg.sh bpi-r3 ${{ env.UDISTRO }} | |
# - name: Build R4 Ubuntu ${{ env.UDISTRO }} Image | |
# run: | | |
# ./buildimg.sh bpi-r4 ${{ env.UDISTRO }} | |
#- name: Upload to Google Drive | |
# uses: Jodebu/upload-to-drive@master | |
# with: | |
# target: bpi-r3 | |
# credentials: ${{ secrets.CREDENTIALS }} | |
# folder: ${{ secrets.FOLDERID }} | |
- name: Upload to gdrive | |
uses: adityak74/google-drive-upload-git-action@main | |
with: | |
credentials: ${{ secrets.CREDENTIALS }} | |
filename: "*.img.gz" | |
folderId: ${{ secrets.FOLDERID }} | |
overwrite: "true" # optional boolean |