Skip to content

Commit

Permalink
improve artefacts
Browse files Browse the repository at this point in the history
.

.
  • Loading branch information
vladimir-popov committed Jul 5, 2023
1 parent 6daea72 commit b9453c2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ jobs:
fetch-depth: 0
- name: Build
run: make RELEASE=true
- name: Pack
run: cd ./build/ && tar -czf labyrinth_linux64.tar.gz ./labyrinth
- uses: actions/upload-artifact@v3
with:
name: labyrinth_linux
path: |
build/labyrinth
name: labyrinth_linux64.tar.gz
path: build/labyrinth_linux64.tar.gz

macOS:
runs-on: macos-13
Expand All @@ -28,8 +29,9 @@ jobs:
fetch-depth: 0
- name: Build
run: make RELEASE=true
- name: Pack
run: cd ./build/ && tar -czf labyrinth_macos.tar.gz ./labyrinth
- uses: actions/upload-artifact@v3
with:
name: labyrinth_macos
path: |
build/labyrinth
name: labyrinth_macos.tar.gz
path: build/labyrinth_macos.tar.gz
2 changes: 2 additions & 0 deletions src/app.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ parse_args (int argc, char *argv[])
"\t" bold ( "") " or " bold ("l") " - move to the right room;\n"
"\t" bold ( "") " or " bold ("l") " - move to the right room;\n"
);
help_title("AUTHOR");
printf("Vladimir Popov <[email protected]>\n");
// clang-format on
return -1;
case 's':
Expand Down

0 comments on commit b9453c2

Please sign in to comment.