Skip to content

Commit cb529f0

Browse files
committed
Revert to ubuntu-latest and try copying the ddl files to the root and lets see 🙏🙏
1 parent 2db5bfe commit cb529f0

1 file changed

Lines changed: 6 additions & 9 deletions

File tree

.github/workflows/Publish Release.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ on:
99

1010
jobs:
1111
publish:
12-
runs-on: windows-latest
12+
runs-on: ubuntu-latest
1313
env:
1414
python_ver: 3.11
1515

1616
steps:
1717
- uses: actions/checkout@v2
18-
- name: Set up Python ${{ matrix.python-version }}
18+
- name: Set up Python ${{ env.python-version }}
1919
uses: actions/setup-python@v2
2020
with:
21-
python-version: ${{ matrix.python-version }}
21+
python-version: ${{ env.python-version }}
2222
- name: get version
2323
id: version
2424
uses: notiz-dev/github-action-json-property@release
@@ -30,12 +30,9 @@ jobs:
3030
run: |
3131
python -m pip install --upgrade pip
3232
pip install -r ./requirements.txt -t ./lib
33-
- name: Compress Plugin
34-
run: Compress-Archive -Path * -DestinationPath Flow.Launcher.Plugin.MSOutlook.zip
35-
shell: pwsh
36-
- name: List ZIP file
37-
run: Get-ChildItem -Path . -Filter *.zip
38-
shell: pwsh
33+
cp ./lib/pywin32_system32/pythoncom311.dll .
34+
cp ./lib/pywin32_system32/pywintypes311.dll .
35+
zip -r Flow.Launcher.Plugin.MSOutlook.zip . -x '*.git*'
3936
- name: Publish
4037
if: success()
4138
uses: softprops/action-gh-release@v1

0 commit comments

Comments
 (0)