File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99
1010jobs :
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
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
You can’t perform that action at this time.
0 commit comments