Test steps, some fixes

This commit is contained in:
Soxoj
2024-12-04 01:07:54 +01:00
parent a57f9734a1
commit dd485e8d9c
+27 -10
View File
@@ -6,23 +6,39 @@ on:
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: PyInstaller Windows Build - name: TEST PyInstaller Windows Build
uses: JackMcKew/pyinstaller-action-windows@main - shell: bash
with: run: |
path: pyinstaller echo "test" > maigret_standalone_win32
- name: Upload PyInstaller Binary to Workflow as Artifact - name: TEST Upload PyInstaller Binary to Workflow as Artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: maigret_standalone_win32 name: maigret_standalone_win32
path: pyinstaller/dist/windows path: maigret_standalone_win32
# - name: PyInstaller Windows Build
# uses: JackMcKew/pyinstaller-action-windows@main
# with:
# path: pyinstaller
# - name: Upload PyInstaller Binary to Workflow as Artifact
# uses: actions/upload-artifact@v4
# with:
# name: maigret_standalone_win32
# path: pyinstaller/dist/windows
release:
runs-on: ubuntu-latest
steps:
- name: Download PyInstaller Binary
uses: actions/download-artifact@v4
with:
name: maigret_standalone_win32
- name: Create New Release - name: Create New Release
uses: actions/create-release@v1 uses: actions/create-release@v1
@@ -33,7 +49,8 @@ jobs:
release_name: Windows Release ${{ github.ref_name }} release_name: Windows Release ${{ github.ref_name }}
tag_name: ${{ github.ref_name }} tag_name: ${{ github.ref_name }}
body: | body: |
This is a development release, tag ${{ github.ref_name }}. This is a development release, built from the branch **${{ github.ref_name }}**.
Download the attached file "maigret_standalone_win32.zip" to get the Windows executable.
env: env:
GITHUB_TOKEN: ${{ github.token }} GITHUB_TOKEN: ${{ github.token }}
@@ -43,6 +60,6 @@ jobs:
GITHUB_TOKEN: ${{ github.token }} GITHUB_TOKEN: ${{ github.token }}
with: with:
upload_url: ${{ steps.create_release.outputs.upload_url }} upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: pyinstaller/dist/windows asset_path: ./maigret_standalone_win32
asset_name: maigret_standalone_win32 asset_name: maigret_standalone_win32
asset_content_type: application/zip asset_content_type: application/zip