fix: transformer decoder layer embed #22
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: build and upload | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- v* | |
jobs: | |
build_sdist: | |
name: build sdist | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: setup version | |
run: | | |
[ "v"`grep -e '[0-9]\.[0-9]\.[0-9]*' -o -- offlinerllib/__init__.py` = ${GITHUB_REF##*/} ] && echo "VERSION=${GITHUB_REF##*/}" >> $GITHUB_ENV | |
- name: build sdist | |
run: pipx run build --sdist | |
- name: check metadata | |
run: pipx run twine check dist/* | |
- name: upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
path: dist/*.tar.gz | |
# build_wheels: | |
# name: build wheels for ${{matrix.os}} | |
# runs-on: ${{ matrix.os }} | |
# strategy: | |
# fail-fast: false | |
# matrix: | |
# os: [ubuntu-latest, windows-latest] | |
# steps: | |
# - name: checkout | |
# uses: actions/checkout@v3 | |
# # - name: setup version | |
# # run: | | |
# # [ "v"`cat VERSION` = ${GITHUB_REF##*/} ] && echo "VERSION=${GITHUB_REF##*/}" >> $GITHUB_ENV | |
# - name: build | |
# uses: pypa/cibuildwheel@v2.8.0 | |
# env: | |
# CIBW_ARCHS_MACOS: auto universal2 | |
# - name: verify clean directory | |
# run: git diff --exit-code | |
# shell: bash | |
# - name: upload artifact | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# path: wheelhouse/*.whl | |
upload: | |
name: upload to pypi | |
needs: [build_sdist] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-python@v2 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: artifact | |
path: dist | |
- uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: "__token__" | |
password: ${{ secrets.PYPI_TOKEN }} |