-
Notifications
You must be signed in to change notification settings - Fork 1
50 lines (47 loc) · 1.42 KB
/
ci.yaml
File metadata and controls
50 lines (47 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: build and publish
on:
push:
tags:
- v*
jobs:
pypi-build:
strategy:
matrix:
python_version: [ '3.10' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
- name: Install poetry
uses: snok/install-poetry@v1
- name: Install Deps
run: poetry install
- name: Publish
env:
PYPI_USERNAME: ${{ secrets.PYPI_API_USER }}
PYPI_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: poetry publish --build --username $PYPI_USERNAME --password $PYPI_PASSWORD --skip-existing
docker-build:
runs-on: ubuntu-latest
needs: pypi-build
steps:
- uses: actions/checkout@v2
- uses: docker/setup-qemu-action@v1
- uses: docker/setup-buildx-action@v1
- uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/build-push-action@v2
with:
context: ./docker/
file: ./docker/Dockerfile
platforms: linux/arm64,linux/amd64
push: true
tags: |
ghcr.io/kings-distributed-systems/python-rds-ref:${{ github.ref_name }}
ghcr.io/kings-distributed-systems/python-rds-ref:latest