Bump urllib3 from 2.2.1 to 2.2.2 #14
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: Build | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: 'meteor-dev/.node-version' | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version-file: '.python-version' | |
cache: 'poetry' | |
- name: Setup Meteor | |
run: | | |
npm install -g meteor | |
export PATH="${HOME}/.meteor:${PATH}" | |
- name: Build Genisys | |
run: ./build.sh | |
- name: Upload sdist | |
uses: actions/upload-artifact@v4 | |
with: | |
name: genisys-0.2.0.tar.gz | |
path: dist/genisys-0.2.0.tar.gz | |
- name: Upload wheel | |
uses: actions/upload-artifact@v4 | |
with: | |
name: genisys-0.2.0-py3-none-any.whl | |
path: dist/genisys-0.2.0-py3-none-any.whl | |
- name: Upload Meteor tarball | |
uses: actions/upload-artifact@v4 | |
with: | |
name: meteor-dev.tar.gz | |
path: genisys/server/external/meteor-dev.tar.gz | |
release: | |
runs-on: ubuntu-22.04 | |
needs: [ build ] | |
if: github.event_name == 'push' && github.ref_type == 'tag' | |
steps: | |
- name: Download Artifacts | |
uses: actions/download-artifact@v4 | |
- name: Create Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: | | |
genisys-0.2.0-py3-none-any.whl/*.whl | |
genisys-0.2.0.tar.gz/*.tar.gz |