Bump LiThermal from 1d49856
to 1fada4f
(#2)
#9
This file contains 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
# This starter workflow is for a CMake project running on multiple platforms. There is a different starter workflow if you just want a single platform. | |
# See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-single-platform.yml | |
name: Make project | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Build | |
run: bash ./build.sh | |
- name: Pack | |
run: tar -cf UDISK.tar UDISK | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: UDISK.tar | |
path: UDISK.tar |