mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 16:02:14 +00:00
22 lines
617 B
YAML
22 lines
617 B
YAML
name: Change versions
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
paths:
|
|
- "version.txt"
|
|
jobs:
|
|
change_version:
|
|
runs-on: ubicloud
|
|
container: node:18
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: git config --system --add safe.directory /__w/windmill/windmill
|
|
- name: Change versions
|
|
run: ./.github/change-versions.sh "$(cat version.txt)"
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
- name: update lockfile
|
|
run: cd backend && cargo generate-lockfile
|
|
- uses: stefanzweifel/git-auto-commit-action@v4
|