-
Notifications
You must be signed in to change notification settings - Fork 7
42 lines (33 loc) · 872 Bytes
/
e2e.yml
File metadata and controls
42 lines (33 loc) · 872 Bytes
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
name: e2e
on:
# use to test
# push:
# branches:
# - '**'
workflow_dispatch:
permissions:
contents: read
packages: write
env:
LOG_LEVEL: debug
jobs:
e2e-testing:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: ./setup
with:
checkout: false
- run: pnpm compile
- name: Docker registry login
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.repository_owner }} --password-stdin
- name: Build and Publish to ghcr.io
uses: ./
with:
command: docker-builder
image-prefix: ghcr.io/${{ github.repository_owner }}
platforms: linux/amd64,linux/arm64
config: e2e/testing.json
last-only: true