1
0
mirror of https://github.com/tommytran732/Arch-Setup-Script synced 2024-09-19 07:04:42 -04:00
This commit is contained in:
Tommaso Chiti 2021-02-02 17:47:11 +01:00
parent a8d4fbe7ab
commit fa191f6bb7

View File

@ -25,11 +25,15 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Downloading the latest Arch Linux ISO - name: Downloading the latest Arch Linux ISO.
run: wget http://mirrors.mit.edu/archlinux/iso/latest/archlinux-2021.02.01-x86_64.iso run: wget http://mirrors.mit.edu/archlinux/iso/latest/archlinux-2021.02.01-x86_64.iso
- name: Creating the ISO mountpoint - name: Installing mkisofs.
run: sudo apt-get install mkisofs -y
- name: Creating the ISO mountpoint.
run: mkdir ~/archiso run: mkdir ~/archiso
- name: Mounting the ISO - name: Mounting the ISO.
run: sudo mount archlinux-* ~/archiso run: sudo mount archlinux-* ~/archiso
- name: Listing files - name: Extracting squashfs.
run: ls ~/archiso run: sudo unsquashfs archiso/arch/x86_64/airootfs.sfs
- name: Listing squashfs content
run: ls ~/squashfs-root