retrieve version from package #167
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 | |
on: | |
release: | |
types: [ released ] | |
pull_request: | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: micromamba-shell {0} | |
jobs: | |
build: | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1 | |
with: | |
upload_to_pypi: ${{ (github.event_name == 'release') && (github.event.action == 'released') }} | |
secrets: | |
pypi_token: ${{ secrets.PYPI_PASSWORD_STSCI_MAINTAINER }} | |
freeze: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
[ "ubuntu-latest", "macos-latest" ] | |
python-version: | |
[ "3.11", "3.12" ] | |
fail-fast: false | |
name: freeze versions (Python ${{ matrix.python-version }}, ${{ matrix.os }}) | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-name: jwql-${{ runner.os }}-py${{ matrix.python-version }} | |
environment-file: environment.yml | |
create-args: >- | |
python=${{ matrix.python-version }} | |
conda | |
init-shell: none | |
generate-run-shell: true | |
- id: version | |
name: retrieve package version with dunamai | |
run: | | |
micromamba install -y dunamai | |
echo version=$(dunamai from any --strict --pattern "default-unprefixed" --style semver) >> $GITHUB_OUTPUT | |
micromamba remove -y dunamai | |
- run: pip install . | |
- run: pip list | |
- id: filename | |
run: echo "filename=jwql_${{ steps.version.outputs.version }}_conda_${{ runner.os }}_${{ runner.arch }}_py${{ matrix.python-version }}.yml" >> $GITHUB_OUTPUT | |
- run: conda env export --no-build | grep -v "name:" | grep -v "prefix:" > ${{ steps.filename.outputs.filename }} | |
- run: cat ${{ steps.filename.outputs.filename }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ steps.filename.outputs.filename }} | |
path: ${{ steps.filename.outputs.filename }} | |
- if: (github.event_name == 'release' && github.event.action == 'released') | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
file: ${{ steps.filename.outputs.filename }} | |