Skip to content

Commit

Permalink
patch for release action
Browse files Browse the repository at this point in the history
  • Loading branch information
dhhagan committed Apr 24, 2024
1 parent 7bece55 commit 3313b70
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
name: build & release
on:
create:
tags:
- '*'
release:
types: [published]

jobs:
build-n-publish:
name: Build and publish to PyPI
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- name: Checkout branch
uses: actions/checkout@v2
Expand All @@ -18,13 +17,12 @@ jobs:
python-version: 3.8

- name: Install poetry
uses: snok/install-poetry@v1.1.1
uses: snok/install-poetry@v1
with:
version: 1.1.4
create_virtualenvs: true
virtualenvs-create: true

- name: Install dependencies
run: poetry install
run: poetry install --no-interaction

- name: Build and publish to PyPI
run: |
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "atmospy"
version = "0.1.0a3"
version = "0.1.0a4"
description = "Data analysis and visualization for air quality data."
authors = ["David H Hagan <[email protected]>"]
license = "Apache-2.0"
Expand Down

0 comments on commit 3313b70

Please sign in to comment.