Skip to content

Bump LiThermal from 1d49856 to 1fada4f (#2) #9

Bump LiThermal from 1d49856 to 1fada4f (#2)

Bump LiThermal from 1d49856 to 1fada4f (#2) #9

Workflow file for this run

# 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