-
Notifications
You must be signed in to change notification settings - Fork 9
70 lines (66 loc) · 1.84 KB
/
release.yml
File metadata and controls
70 lines (66 loc) · 1.84 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: release
on:
release:
types: [published]
workflow_dispatch:
jobs:
build-pypi:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.x"
cache: 'pip'
- name: Build distributions
run: |
python -m pip install --upgrade pip
python -m pip install build hatchling
python -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v7
with:
name: python-package-distributions
path: dist/
release-pypi:
name: Upload release to PyPI
needs:
- build-pypi
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/mkdocs-simple-plugin
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing
steps:
- name: Download all the dists
uses: actions/download-artifact@v8
with:
name: python-package-distributions
path: dist/
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
release-docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup environment
run: |
echo "VERSION=$(cat VERSION)" >> $GITHUB_ENV
- name: Login to DockerHub
uses: docker/login-action@v4.1.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push docker image
uses: docker/build-push-action@v7.1.0
with:
context: .
file: ./Dockerfile
tags: |
althack/mkdocs-simple-plugin:latest
althack/mkdocs-simple-plugin:${{ env.VERSION }}
push: true