Skip to content
This repository was archived by the owner on Jun 24, 2024. It is now read-only.

Commit f04e255

Browse files
committed
Use Docker on Managed Runner
1 parent 67da31f commit f04e255

File tree

1 file changed

+4
-14
lines changed

1 file changed

+4
-14
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,26 +14,16 @@ jobs:
1414
echo "PACKAGE_VERSION=1" >> $GITHUB_ENV
1515
- name: Checkout
1616
uses: actions/checkout@v2
17+
- name: Build
18+
run: |
19+
./bin/build
1720
- name: Login to GitHub Container Registry
1821
uses: docker/login-action@v1
1922
with:
2023
registry: ghcr.io
2124
username: ${{ github.repository_owner }}
2225
password: ${{ secrets.GITHUB_TOKEN }}
23-
- name: Build & Run Development Container
24-
uses: devcontainers/[email protected]
25-
with:
26-
imageName: ghcr.io/customink/ruby-vips-lambda-devcontainer
27-
runCmd: |
28-
./bin/build
29-
- name: Get CHANGELOG Entry
30-
id: changelog_reader
31-
uses: mindsers/[email protected]
32-
with:
33-
validation_level: warn
34-
version: ${{ steps.tag_name.outputs.current_version }}
35-
path: ./CHANGELOG.md
36-
- name: Push Lambda Extension Layer Image
26+
- name: Deploy Lambda Layer Container
3727
run: |
3828
echo "${{ secrets.PUBLIC_GITHUB_TOKEN_PACKAGES }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
3929
./bin/deploy

0 commit comments

Comments
 (0)