Skip to content

Commit

Permalink
Complete windows workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
culler committed Jan 23, 2024
1 parent 3c9aae9 commit 53e0602
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push]

jobs:
build_package:
name: Build Tcl extension for Tcl 8 and 9 on Windows
name: Build TkGL extension for Tcl 8 and 9 on Windows
runs-on: windows-2022
steps:
- name: Checkout
Expand Down Expand Up @@ -63,7 +63,14 @@ jobs:
shell: cmd
working-directory: win

- name: List directory with bash
- name: Assemble the package
run: |
ls -l win/Release*
mkdir -p dist/TkGL1.0
cp win/Release*/*.* dist/TkGL1.0
shell: bash

- name: Save artifacts
uses: actions/upload-artifact@v3
with:
name: TkGL_package
path: ./dist

0 comments on commit 53e0602

Please sign in to comment.