Bump certifi from 2023.7.22 to 2024.7.4 (#63) #403
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 and Release | |
on: | |
push: | |
release: | |
types: [published] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v22 | |
- name: Build package | |
run: | | |
nix build --no-link --print-out-paths --print-build-logs .#default | |
- name: Build distribution | |
id: release-build | |
run: | | |
dist=$(nix build --no-link --print-out-paths --print-build-logs .#dist) | |
echo "dist=$dist" >> $GITHUB_OUTPUT | |
- name: Test package | |
run: nix flake check --print-build-logs | |
- if: matrix.os == 'ubuntu-latest' | |
name: Upload wheel file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: pocket_ic_${{ github.sha }}.whl | |
path: ${{ steps.release-build.outputs.dist }}/*.whl | |
- if: matrix.os == 'ubuntu-latest' | |
name: Upload sources | |
uses: actions/upload-artifact@v3 | |
with: | |
name: pocket_ic_${{ github.sha }}.tar.gz | |
path: ${{ steps.release-build.outputs.dist }}/*.tar.gz | |
- if: matrix.os == 'ubuntu-latest' | |
name: Upload sources | |
uses: actions/upload-artifact@v3 | |
with: | |
name: pocket_ic_${{ github.sha }}.tar.gz | |
path: ${{ steps.release-build.outputs.dist }}/*.tar.gz | |
release: | |
needs: build | |
if: ${{ github.event_name == 'release' }} | |
runs-on: ubuntu-latest | |
environment: | |
name: pypi | |
url: https://pypi.org/p/pocket_ic | |
permissions: write-all | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: pocket_ic_${{ github.sha }}.whl | |
- uses: actions/download-artifact@v3 | |
with: | |
name: pocket_ic_${{ github.sha }}.tar.gz | |
- name: Set tag | |
id: set_tag | |
run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT | |
- name: Set whl artifact name | |
id: set_name_whl | |
run: echo "artifact_name=pocket_ic-${{ steps.set_tag.outputs.tag }}-py3-none-any.whl" >> $GITHUB_OUTPUT | |
- name: Set whl artifact name | |
id: set_name_tar | |
run: echo "artifact_name=pocket_ic-${{ steps.set_tag.outputs.tag }}.tar.gz" >> $GITHUB_OUTPUT | |
- name: ls | |
run: echo `ls -la ` | |
- name: move artifacs to dist | |
run: | | |
mkdir dist | |
cp *.whl dist/ | |
cp *.tar.gz dist/ | |
- name: upload artifacts to release page | |
uses: softprops/action-gh-release@master | |
with: | |
files: | | |
${{ steps.set_name_whl.outputs.artifact_name }} | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |