Skip to content

Commit

Permalink
chore: update apt repositories on alpha/beta workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
steveiliop56 committed Jun 9, 2024
1 parent b3abb16 commit 0b684d6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/alpha-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- name: Checkout code
uses: actions/checkout@v4

- uses: rickstaa/action-create-tag@v1
with:
tag: ${{ github.event.inputs.version }}
Expand All @@ -33,6 +33,9 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Update repositories
run: sudo apt update

- name: Install apt requirements
run: sudo apt install coreutils quilt parted qemu-user-static debootstrap zerofree zip dosfstools libarchive-tools libcap2-bin grep rsync xz-utils file git curl bc qemu-utils kpartx gpg pigz sed -y

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/beta-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- name: Checkout code
uses: actions/checkout@v4

- uses: rickstaa/action-create-tag@v1
with:
tag: ${{ github.event.inputs.version }}
Expand All @@ -33,6 +33,9 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Update repositories
run: sudo apt update

- name: Install apt requirements
run: sudo apt install coreutils quilt parted qemu-user-static debootstrap zerofree zip dosfstools libarchive-tools libcap2-bin grep rsync xz-utils file git curl bc qemu-utils kpartx gpg pigz sed -y

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

- name: Set runtipi version
run: |
sed -i "s|RUNTIPI_VERSION=runtipi_version # Specify a version|RUNTIPI_VERSION=${{ github.event.inputs.version }} # Specify a version|" config
sed -i "s|RUNTIPI_VERSION=runtipi_version # Specify a version|RUNTIPI_VERSION=${{ github.event.inputs.version }}|" config
- name: Build Image
run: ./build-docker.sh
Expand Down

0 comments on commit 0b684d6

Please sign in to comment.