Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Jul 26, 2023
1 parent e4008e6 commit c366e9a
Show file tree
Hide file tree
Showing 5 changed files with 284 additions and 230 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
on:
push:
tags:
- '*'

name: Create Release

jobs:
build_on_macos:
name: Build macOS wheels
runs-on: macos-latest

strategy:
matrix:
python-version: ['3.10']

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Create release
uses: softprops/action-gh-release@v1
with:
name: lvmguider ${{ github.ref_name }}

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel twine build
- name: Build wheels
run: |
pyproject-build -w
- name: Build source
run: |
pyproject-build -s
- name: Publish wheels to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.pypi_password }}
run: |
twine upload dist/*
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Changelog

## Next version
## 0.1.0 - July 26, 2023

### 🚀 New

* Initial version of the guider with functioning focus, acquisition, and guiding routines.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM python:3.11-slim-bookworm

MAINTAINER Jose Sanchez-Gallego, [email protected]
LABEL org.opencontainers.image.source https://github.com/albireox/lvmguider
LABEL org.opencontainers.image.source https://github.com/sdss/lvmguider

WORKDIR /opt

Expand Down
Loading

0 comments on commit c366e9a

Please sign in to comment.