-
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (35 loc) · 1.05 KB
/
devcontainer.yml
File metadata and controls
42 lines (35 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# https://github.com/devcontainers/ci/blob/main/docs/github-action.md
name: 'devcontainer'
on: # manually triggered
workflow_dispatch:
jobs:
ci:
strategy:
matrix:
os: [ubuntu-latest]
arch: [x64, arm64]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout (GitHub)
uses: actions/checkout@v4
- name: Setup QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: ${{ matrix.arch }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Pre-build image and run command in dev container
uses: devcontainers/ci@v0.3
with:
imageName: ghcr.io/pythoninthegrass/mvp
cacheFrom: ghcr.io/pythoninthegrass/mvp
noCache: false
push: always
runCmd: |
make help