diff --git a/.github/workflows b/.github/workflows/main.yml similarity index 67% rename from .github/workflows rename to .github/workflows/main.yml index 2909cb4..9d93b1e 100644 --- a/.github/workflows +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: '3.8' # Specify your Python version + python-version: '3.8' - name: Install dependencies run: | @@ -32,14 +32,14 @@ jobs: uses: actions/upload-artifact@v2 with: name: executable - path: dist/main # Change 'main' to your executable name + path: dist/main - name: Create Release id: create_release uses: softprops/action-gh-release@v1 with: - tag_name: v1.0.0 # Change this to your desired versioning scheme - release_name: Release v1.0.0 # Change this to your desired release name + tag_name: v1.0.0 + release_name: Release v1.0.0 draft: false prerelease: false env: @@ -48,7 +48,7 @@ jobs: - name: Upload to Release uses: softprops/action-gh-release@v1 with: - tag_name: v1.0.0 # Ensure this matches the tag name used in the previous step - files: dist/main # Change 'main' to your executable name + tag_name: v1.0.0 + files: dist/main env: - GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} \ No newline at end of file