mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 00:02:03 +00:00
6eecae6857
* chore(main): release 1.63.1 * update versions * fix change versions * fix change versions * Apply automatic changes * update base64 * fix versions * improve app setup * improve app setup --------- Co-authored-by: rubenfiszel <rubenfiszel@users.noreply.github.com>
22 lines
622 B
YAML
22 lines
622 B
YAML
name: Change versions
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
paths:
|
|
- "version.txt"
|
|
jobs:
|
|
change_version:
|
|
runs-on: ubuntu-latest
|
|
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
|