Release as binary #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Windows x86 | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
release: | |
runs-on: windows-latest | |
permissions: | |
contents: write | |
packages: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install pipenv | |
run: | | |
python -m pip install --upgrade pip | |
pip install pipenv | |
- name: Install dev requirements | |
run: pipenv install --dev | |
- name: Build | |
run: pipenv run build_windows_x86 | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: 0.0.1 | |
name: Release 0.0.1 | |
draft: false | |
prerelease: false | |
files: ${{ github.workspace }}/dist/configure_repositories_windows_x86 |