File tree Expand file tree Collapse file tree 1 file changed +3
-17
lines changed Expand file tree Collapse file tree 1 file changed +3
-17
lines changed Original file line number Diff line number Diff line change 9
9
update-version :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v4
12
+ - name : Checkout repository
13
+ uses : actions/checkout@v4
13
14
14
15
- name : Setup Node.js
15
16
uses : actions/setup-node@v4
24
25
echo "TAG_NAME=v$LATEST_VERSION" >> $GITHUB_ENV
25
26
26
27
- name : Run update script
27
- run : |
28
- node update-versions.js ${{ env.LATEST_VERSION }}
28
+ run : node update-versions.js ${{ env.LATEST_VERSION }}
29
29
30
- - name : Ensure branch exists
31
- run : |
32
- git fetch origin
33
- if ! git show-ref --verify --quiet refs/heads/update-lotus-version; then
34
- git checkout -b update-lotus-version
35
- else
36
- git checkout update-lotus-version
37
- fi
38
-
39
- - name : Configure Git
40
- run : |
41
- git config user.name "GitHub Actions Bot"
42
- git config user.email "github-actions[bot]@users.noreply.github.com"
43
-
44
30
- name : Create Pull Request
45
31
uses : peter-evans/create-pull-request@v5
46
32
with :
You can’t perform that action at this time.
0 commit comments