We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd860ae commit 2a17c10Copy full SHA for 2a17c10
.github/workflows/release.yml
@@ -26,6 +26,14 @@ jobs:
26
restore-keys: |
27
${{ runner.os }}-node-
28
- run: npm ci
29
+ - name: Build Docker images
30
+ run: |
31
+ echo "${{ secrets.GHCR_PAT }}" > github_token
32
+ export DOCKER_BUILDKIT=1
33
+ docker build --progress=plain --secret id=github_token,src=github_token -t lambda-shell-base:tiny -f tiny.Dockerfile .
34
+ docker build --progress=plain --secret id=github_token,src=github_token -t lambda-shell-base:slim -f slim.Dockerfile .
35
+ docker build --progress=plain --secret id=github_token,src=github_token -t lambda-shell-base:full -f Dockerfile .
36
+ shell: bash
37
- run: npx semantic-release
38
env:
39
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments