You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[+] switch to psycopg3 instead of the binary (#91)
* Use plain psycopg instead of binary
* Do not create the GUI installer anymore
* Simplify and modernize releasing
---------
Co-authored-by: avandras <andras.vaczi@cybertec.at>
Copy file name to clipboardExpand all lines: .github/workflows/release.yml
+6-32Lines changed: 6 additions & 32 deletions
Original file line number
Diff line number
Diff line change
@@ -17,40 +17,14 @@ jobs:
17
17
- name: Checkout code
18
18
uses: actions/checkout@v4
19
19
20
-
- name: Build project# This would actually build your project, using zip for an example artifact
20
+
- name: Build project
21
21
shell: pwsh
22
22
run: |
23
23
.\make.ps1
24
24
25
-
- name: Create Release
26
-
id: create_release
27
-
uses: actions/create-release@v1
28
-
env:
29
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25
+
- name: Release Artifacts
26
+
uses: softprops/action-gh-release@v2
30
27
with:
31
-
tag_name: ${{ github.ref }}
32
-
release_name: Release ${{ github.ref }}
33
-
draft: false
34
-
prerelease: false
35
-
36
-
- name: Upload Release Asset (zip)
37
-
id: upload-release-asset-zip
38
-
uses: actions/upload-release-asset@v1
39
-
env:
40
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41
-
with:
42
-
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
43
-
asset_path: ./PES.zip
44
-
asset_name: PES.zip
45
-
asset_content_type: application/zip
46
-
47
-
- name: Upload Release Asset (exe)
48
-
id: upload-release-asset-exe
49
-
uses: actions/upload-release-asset@v1
50
-
env:
51
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
52
-
with:
53
-
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
0 commit comments