Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows #14
This file contains hidden or 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
name: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install build dep | |
run: sudo apt install bison flex libelf-dev | |
- name: Running Script to Create Minimal x86_64 iso | |
run: | | |
./build_linux.sh | |
- name: Upload a Build Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
# A file, directory or wildcard pattern that describes what to upload | |
path: /home/runner/work/minimal_os_build_script/minimal_os_build_script/output | |
- name: Download a Build Artifact | |
uses: actions/download-artifact@v4.1.7 | |
with: | |
# Destination path | |
path: /home/runner/work/minimal_os_build_script/minimal_os_build_script/tmp |