chore: bump workflow
This commit is contained in:
@@ -51,7 +51,7 @@ jobs:
|
|||||||
meshbook.py
|
meshbook.py
|
||||||
|
|
||||||
- name: Upload binaries as artifacts
|
- name: Upload binaries as artifacts
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: bin-linux
|
name: bin-linux
|
||||||
path: /dist
|
path: /dist
|
||||||
@@ -118,7 +118,7 @@ jobs:
|
|||||||
meshbook.py
|
meshbook.py
|
||||||
|
|
||||||
- name: Upload binaries as artifacts
|
- name: Upload binaries as artifacts
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: bin-windows
|
name: bin-windows
|
||||||
path: /dist
|
path: /dist
|
||||||
@@ -133,7 +133,7 @@ jobs:
|
|||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Download artifacts
|
- name: Download artifacts
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: bin-linux
|
name: bin-linux
|
||||||
path: ./bin
|
path: ./bin
|
||||||
@@ -168,7 +168,7 @@ jobs:
|
|||||||
go build -o ./patchworks ./src
|
go build -o ./patchworks ./src
|
||||||
|
|
||||||
- name: upload the building actifacts
|
- name: upload the building actifacts
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: package-linux64
|
name: package-linux64
|
||||||
path: |
|
path: |
|
||||||
@@ -186,7 +186,7 @@ jobs:
|
|||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Download artifacts
|
- name: Download artifacts
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: bin-windows
|
name: bin-windows
|
||||||
path: ./bin
|
path: ./bin
|
||||||
@@ -242,7 +242,7 @@ jobs:
|
|||||||
go build -o ./patchworks-debug.exe ./src
|
go build -o ./patchworks-debug.exe ./src
|
||||||
|
|
||||||
- name: upload the building actifacts
|
- name: upload the building actifacts
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: package-win64
|
name: package-win64
|
||||||
path: |
|
path: |
|
||||||
|
|||||||
+2
-2
@@ -40,11 +40,11 @@ func main() {
|
|||||||
inputContainer := draw.MakeInputContainer(userEntry, passEntry, targEntry, &book, w)
|
inputContainer := draw.MakeInputContainer(userEntry, passEntry, targEntry, &book, w)
|
||||||
|
|
||||||
content := container.NewBorder(
|
content := container.NewBorder(
|
||||||
inputContainer, // top
|
nil, // top
|
||||||
nil, // bottom
|
nil, // bottom
|
||||||
nil, // left
|
nil, // left
|
||||||
nil, // right
|
nil, // right
|
||||||
nil, // center
|
inputContainer, // center
|
||||||
)
|
)
|
||||||
|
|
||||||
w.SetContent(content)
|
w.SetContent(content)
|
||||||
|
|||||||
Reference in New Issue
Block a user