Skip to content

Commit

Permalink
Merge pull request #30 from tracelabs/tom-github-action-patch
Browse files Browse the repository at this point in the history
updated github actions with apt update and v4 action
  • Loading branch information
humandecoded authored Oct 1, 2023
2 parents 2dfce95 + a3eed2d commit 8ce7f9e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4

# Steps represent a sequence of tasks that will be executed as part of the job
- name: Run a multi-line script (build the ISO)
run: |
sudo apt update
sudo apt install debos p7zip qemu-utils zerofree
cd $GITHUB_WORKSPACE
chmod +x scripts/tl/*.sh
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ jobs:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build OVA
run: |
sudo apt update
sudo apt -y install debos p7zip qemu-utils zerofree
cd $GITHUB_WORKSPACE
chmod +x scripts/tl/*.sh
Expand Down

0 comments on commit 8ce7f9e

Please sign in to comment.