chore: bump workflow

This commit is contained in:
2026-03-30 20:32:44 +02:00
parent c9d96c6c2e
commit a0b8c73b31
2 changed files with 9 additions and 9 deletions
+7 -7
View File
@@ -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
@@ -116,9 +116,9 @@ jobs:
--name meshbook \ --name meshbook \
--distpath /dist \ --distpath /dist \
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
View File
@@ -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)