Skip to content

Commit

Permalink
Using proper docker image, updated GH workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Umkus committed Feb 26, 2023
1 parent 1887667 commit 9092ab2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ jobs:
id: vars
run: |
sharp_version="${{ fromJSON(steps.package_lock_json.outputs.packageLockJson).dependencies.sharp.version }}"
echo "::set-output name=sharp_version::$sharp_version"
echo "sharp_version=$sharp_version" >> $GITHUB_OUTPUT
release_exists="true"
git show-ref --tags --quiet --verify -- "refs/tags/$sharp_version" || release_exists="false"
echo "::set-output name=release_exists::$release_exists"
echo "release_exists=$release_exists" >> $GITHUB_OUTPUT
- name: Build
id: docker_build
uses: docker/build-push-action@v4
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM lambci/lambda:build-nodejs12.x
FROM public.ecr.aws/lambda/nodejs:18

WORKDIR /build

Expand Down

0 comments on commit 9092ab2

Please sign in to comment.