File tree 3 files changed +12
-2
lines changed
3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 39
39
run : cp test/support/index.html dist-app/
40
40
41
41
- name : Checkout gh-pages
42
- run : git checkout gh-pages
42
+ run : |
43
+ git fetch origin gh-pages
44
+ git checkout gh-pages
43
45
44
46
- name : Add page to current directory
45
47
run : mv dist-app/* .
48
50
run : git add restricted-input.js index.html
49
51
50
52
- name : Commit page
51
- run : git commit -ve - m "Update demo page for restricted-input v${{ env.latest_version }}"
53
+ run : git commit -m "Update demo page for restricted-input v${{ env.latest_version }}"
52
54
53
55
- name : Push changes
54
56
run : git push
Original file line number Diff line number Diff line change 15
15
with :
16
16
node-version-file : .nvmrc
17
17
18
+ - run : |
19
+ git checkout main
20
+ git pull
21
+
18
22
- name : Get version
19
23
run : echo "latest_version=$(npm pkg get version --workspaces=false | tr -d \")" >> $GITHUB_ENV
20
24
Original file line number Diff line number Diff line change 1
1
# Restricted Input - Changelog
2
2
3
+ ## unreleased
4
+
5
+ - Fix workflow errors
6
+
3
7
## 4.1.3 (2025-02-25)
4
8
5
9
- Update workflows and scripts
You can’t perform that action at this time.
0 commit comments