From e16300aeb20ea4c485b981a1faf3547b6710fca7 Mon Sep 17 00:00:00 2001 From: Rose Date: Wed, 16 Oct 2024 11:52:45 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20try=20ci=20again=20hopefully?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .forgejo/workflows/semver.yml | 10 +++++----- Dockerfile | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.forgejo/workflows/semver.yml b/.forgejo/workflows/semver.yml index 84eebdb..99ae3f8 100644 --- a/.forgejo/workflows/semver.yml +++ b/.forgejo/workflows/semver.yml @@ -6,13 +6,13 @@ on: jobs: semver: runs-on: ubuntu-latest - container: - image: node:21-alpine steps: - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: "lts/*" + - name: Setup Yarn run: | - apk add --no-cache libc6-compat - apk update yarn set version canary yarn config set nodeLinker node-modules - name: Checkout @@ -20,7 +20,7 @@ jobs: with: fetch-depth: 0 - name: yarn install - run: yarn install + run: yarn install --immutable - name: Semver run: yarn run semantic-release env: diff --git a/Dockerfile b/Dockerfile index eea0822..c9dc122 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ WORKDIR /app COPY .gitignore .gitignore COPY package.json ./ COPY yarn.lock ./ -RUN yarn install +RUN yarn install --immutable COPY . .