Skip to content
Snippets Groups Projects
Commit 66cf3e83 authored by Martin Kröning's avatar Martin Kröning :crab:
Browse files

ARM-CI checkout loader release

parent 55b00990
No related branches found
No related tags found
No related merge requests found
......@@ -37,6 +37,22 @@ jobs:
uses: actions/checkout@v3
with:
path: libhermit-rs
- name: Checkout loader
uses: actions/checkout@v3
with:
repository: hermitcore/rusty-loader
path: loader
- name: Checkout loader release
run: |
# Get new tags from remote
git fetch --tags
# Get latest tag name
latestTag=$(git describe --tags `git rev-list --tags --max-count=1`)
# Checkout latest tag
git checkout $latestTag
working-directory: loader
- name: Rustup (apply rust-toolchain.toml)
working-directory: libhermit-rs
run: rustup show
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment