Skip to content

Commit

Permalink
Edit script
Browse files Browse the repository at this point in the history
  • Loading branch information
laisspportugal committed Aug 14, 2024
1 parent fd94f47 commit 08a6aa5
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ on:
jobs:
bump:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4
with:
lfs: true
token: ${{ secrets.LICHTBLICK_GITHUB_TOKEN }}
lfs: true

- name: Set up Node.js
uses: actions/setup-node@v4
Expand All @@ -22,11 +22,19 @@ jobs:

- run: corepack enable

- name: Cache yarn dependencies
uses: actions/cache@v3
with:
path: |
**/node_modules
~/.cache/yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --mode skip-build
env:
# yarn runs in immutable mode "by default" in CI -- turning this off requires an
# undocumented env var
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- name: Set up Git
Expand All @@ -42,14 +50,12 @@ jobs:
run: yarn version patch

- name: Commit version bumps
id: commit_version_bumps
run: |
git add package.json yarn.lock packages/suite/package.json
git commit -m "chore: bump versions in root and suite package.json"
env:
GITHUB_TOKEN: ${{ secrets.LICHTBLICK_GITHUB_TOKEN }}
git commit -m "chore: bump versions in root and suite package.json [skip actions]"
echo "commit_sha=$(git rev-parse HEAD)" >> $GITHUB_ENV
- name: Push changes
run: |
git push origin main
env:
GITHUB_TOKEN: ${{ secrets.LICHTBLICK_GITHUB_TOKEN }}

0 comments on commit 08a6aa5

Please sign in to comment.