-
Notifications
You must be signed in to change notification settings - Fork 132
42 lines (42 loc) · 1.08 KB
/
publish.yml
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
name: Publish
on:
release:
types: [published]
env:
DOCKER_IMAGE: ghcr.io/fmind/mlops-python-package:latest
concurrency:
cancel-in-progress: true
group: publish-workflow
jobs:
pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: poetry install --with docs
- run: poetry run invoke docs
- uses: JamesIves/github-pages-deploy-action@v4
with:
folder: docs/
branch: gh-pages
packages:
permissions:
packages: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: poetry run invoke packages
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v5
with:
push: true
context: .
cache-to: type=gha
cache-from: type=gha
tags: ${{ env.DOCKER_IMAGE }}