From 590b1fb95d6da24ded14dc32951f8c00d9f93f00 Mon Sep 17 00:00:00 2001 From: Sohrab Behdani Date: Tue, 11 Mar 2025 17:52:42 +0330 Subject: [PATCH] workflow --- .forgejo/workflows/build.yml | 91 +++++++++++++++++++----------------- .github/workflows/build.yml | 68 --------------------------- 2 files changed, 48 insertions(+), 111 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 7911457..497f545 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -1,18 +1,17 @@ -# Adapted from https://github.com/andrewboring/alarm-images/blob/master/.github/workflows/build.yml - name: Build Images on: release: types: - created + workflow_dispatch: # Allows manual triggering env: api_key: ${{ secrets.GITHUB_TOKEN }} name: ${{ github.event.repository.name }} release_name: ${{ github.ref_name }} GH_TOKEN: ${{ github.token }} - + jobs: build: permissions: @@ -23,46 +22,52 @@ jobs: arch: ['aarch64', 'rpi-aarch64'] flavor: ['barebone'] include: - - arch: rpi-aarch64 - flavor: xfce + - arch: rpi-aarch64 + flavor: xfce - - steps: - - uses: actions/checkout@v3 - - name: Configure Git user - run: | - git config --global user.name "github-actions[bot]" - git config --global user.email "github-actions[bot]@users.noreply.github.com" - - name: Install dependencies - run: sudo apt-get update && sudo apt-get install -y parted wget dosfstools zip arch-install-scripts aria2 gh git - - name: Set up QEMU - uses: https://code.forgejo.org/docker/setup-qemu-action@v2 - with: - platforms: arm,arm64 - - name: Build image - shell: bash - run: | - scripts=() - for script_name in "${{ matrix.arch }}" "${{ matrix.flavor }}" "${{ matrix.arch }}-${{ matrix.flavor }}"; do - script_path="setup/$script_name" - if [ -f "$script_path" ]; then - scripts+=("$script_path") - fi - done - sudo ./create-image 9G ${{ matrix.arch }} "${scripts[@]}" - - name: Rename image - id: rename-image - run: | - image_in_name="archlinux-${{ matrix.arch }}.img" - image_out_name="Parchlinux-${{ matrix.arch }}-${{ matrix.flavor }}-$(date '+%Y-%m-%d').img" - mv "$image_in_name" "$image_out_name" - echo "image_name=$image_out_name" >> "$GITHUB_OUTPUT" - - name: Compress image - run: | + - uses: actions/checkout@v3 + + - name: Configure Git user + run: | + git config --global user.name "github-actions[bot]" + git config --global user.email "github-actions[bot]@users.noreply.github.com" + + - name: Install dependencies + run: sudo apt-get update && sudo apt-get install -y parted wget dosfstools zip arch-install-scripts aria2 gh git + + - name: Set up QEMU + uses: https://github.com/docker/setup-qemu-action@v2 + with: + platforms: arm,arm64 + + - name: Build image + shell: bash + run: | + scripts=() + for script_name in "${{ matrix.arch }}" "${{ matrix.flavor }}" "${{ matrix.arch }}-${{ matrix.flavor }}"; do + script_path="setup/$script_name" + if [ -f "$script_path" ]; then + scripts+=("$script_path") + fi + done + sudo ./create-image 9G ${{ matrix.arch }} "${scripts[@]}" + + - name: Rename image + id: rename-image + run: | + image_in_name="archlinux-${{ matrix.arch }}.img" + image_out_name="Parchlinux-${{ matrix.arch }}-${{ matrix.flavor }}-$(date '+%Y-%m-%d').img" + mv "$image_in_name" "$image_out_name" + echo "image_name=$image_out_name" >> "$GITHUB_ENV" + + - name: Compress image + run: | mkdir image_parts - zip -s 2000m "image_parts/${{ steps.rename-image.outputs.image_name }}.zip" "${{ steps.rename-image.outputs.image_name }}" - - name: Upload image - run: | - sha256sum image_parts/* > image_parts/sha256sums.${{ matrix.arch }}.${{ matrix.flavor }}.txt - gh release upload ${{ github.event.release.tag_name }} ./image_parts/* -R ${{ github.repository }} + zip -s 2000m "image_parts/${{ env.image_name }}" "${{ env.image_name }}" + + - name: Upload image + run: | + sha256sum image_parts/* > image_parts/sha256sums.${{ matrix.arch }}.${{ matrix.flavor }}.txt + gh release upload ${{ github.ref_name }} image_parts/* -R ${{ github.repository }} + diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 2fdbee8..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,68 +0,0 @@ -# Adapted from https://github.com/andrewboring/alarm-images/blob/master/.github/workflows/build.yml - -name: Build Images - -on: - release: - types: - - created - -env: - api_key: ${{ secrets.GITHUB_TOKEN }} - name: ${{ github.event.repository.name }} - release_name: ${{ github.ref_name }} - GH_TOKEN: ${{ github.token }} - -jobs: - build: - permissions: - contents: write - runs-on: ubuntu-latest - strategy: - matrix: - arch: ['aarch64', 'rpi-aarch64'] - flavor: ['barebone'] - include: - - arch: rpi-aarch64 - flavor: xfce - - - - steps: - - uses: actions/checkout@v3 - - name: Configure Git user - run: | - git config --global user.name "github-actions[bot]" - git config --global user.email "github-actions[bot]@users.noreply.github.com" - - name: Install dependencies - run: sudo apt-get update && sudo apt-get install -y parted wget dosfstools zip arch-install-scripts aria2 gh git - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - with: - platforms: arm,arm64 - - name: Build image - shell: bash - run: | - scripts=() - for script_name in "${{ matrix.arch }}" "${{ matrix.flavor }}" "${{ matrix.arch }}-${{ matrix.flavor }}"; do - script_path="setup/$script_name" - if [ -f "$script_path" ]; then - scripts+=("$script_path") - fi - done - sudo ./create-image 9G ${{ matrix.arch }} "${scripts[@]}" - - name: Rename image - id: rename-image - run: | - image_in_name="archlinux-${{ matrix.arch }}.img" - image_out_name="Parchlinux-${{ matrix.arch }}-${{ matrix.flavor }}-$(date '+%Y-%m-%d').img" - mv "$image_in_name" "$image_out_name" - echo "image_name=$image_out_name" >> "$GITHUB_OUTPUT" - - name: Compress image - run: | - mkdir image_parts - zip -s 2000m "image_parts/${{ steps.rename-image.outputs.image_name }}.zip" "${{ steps.rename-image.outputs.image_name }}" - - name: Upload image - run: | - sha256sum image_parts/* > image_parts/sha256sums.${{ matrix.arch }}.${{ matrix.flavor }}.txt - gh release upload ${{ github.event.release.tag_name }} ./image_parts/* -R ${{ github.repository }}