File tree Expand file tree Collapse file tree 3 files changed +24
-4
lines changed
Expand file tree Collapse file tree 3 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 1+ name : ci
2+
3+ on :
4+ pull_request :
5+
6+ jobs :
7+ build_runner :
8+ runs-on : ubuntu-latest
9+ permissions :
10+ contents : read
11+ packages : write
12+ attestations : write
13+ steps :
14+ - uses : actions/checkout@v4
15+ - uses : extractions/setup-just@v1
16+ - name : Docker build
17+ run : just build
Original file line number Diff line number Diff line change 1- FROM ghcr.io/actions/actions-runner:2.320 .0
1+ FROM ghcr.io/actions/actions-runner:2.321 .0
22
33USER root
44
@@ -19,8 +19,11 @@ RUN apt-get install -y --no-install-recommends \
1919 unzip \
2020 pkg-config \
2121 apt-transport-https \
22- ca-certificates && \
23- rm -rf /var/lib/apt/lists/*
22+ ca-certificates \
23+ && rm -rf /var/lib/apt/lists/*
24+
25+ RUN curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to /usr/bin
26+ RUN just --version
2427
2528# Copy the start script and make it executable
2629COPY start.sh /start.sh
Original file line number Diff line number Diff line change 11
22IMAGE_NAME := " ghcr.io/rustunit/github-runner"
3- IMAGE_TAG := " 0.1 .0"
3+ IMAGE_TAG := " 0.2 .0"
44
55build :
66 docker build -t {{ IMAGE_NAME}} :latest .
You can’t perform that action at this time.
0 commit comments