32 lines
744 B
YAML
32 lines
744 B
YAML
name: link
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
link-linux:
|
|
name: Link assets on Linux
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out files
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
fetch-depth: 0
|
|
# NOTE - If LFS ever starts getting used for storing zones, switch this to true!
|
|
lfs: false
|
|
|
|
- name: Install Docker
|
|
run: |
|
|
curl -fsSL https://get.docker.com -o get-docker.sh
|
|
sh get-docker.sh
|
|
|
|
- name: Setup OAT
|
|
uses: diamante0018/setup-oat@main
|
|
with:
|
|
version: "0.10.0"
|
|
|
|
- name: Link assets
|
|
run: |
|
|
docker run --rm -v $PWD:/workdir ubuntu:noble /bin/bash -c "cd workdir && ls && cd .oat && ls
|