-
Notifications
You must be signed in to change notification settings - Fork 9
127 lines (120 loc) · 3.47 KB
/
release.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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# Apache License 2.0
name: Release
on:
workflow_call:
inputs:
project_name:
description: The name of the project.
required: true
type: string
project_version:
description: The version of the project.
required: true
type: string
secrets:
DOCKERHUB_USERNAME:
required: true
DOCKERHUB_TOKEN:
required: true
env:
DOCKER_REGISTRY_PATH: openspacecollective
LANG: en_US.UTF-8
jobs:
deploy-package-cpp:
name: Deploy C++ Package
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
lfs: true
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Download C++ Package
uses: actions/download-artifact@v4
with:
pattern: cpp-package-*
merge-multiple: true
path: packages/cpp/
- name: Release C++ Package
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: packages/cpp/*
deploy-package-python:
name: Deploy Python Package
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
lfs: true
- name: Download Python Package
uses: actions/download-artifact@v4
with:
pattern: python-package-*
merge-multiple: true
path: packages/python/
- name: Deploy Python Package
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
packages-dir: packages/python/
deploy-documentation:
name: Deploy Documentation
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
lfs: true
- name: Download Documentation
uses: actions/download-artifact@v4
with:
name: docs
- name: Untar Files
run: tar -xvf docs.tar.gz && rm docs.tar.gz
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: docs
deploy-image-jupyter:
name: Deploy Jupyter Image
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
lfs: true
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build Jupyter Image
uses: docker/build-push-action@v6
with:
tags: |
${{ env.DOCKER_REGISTRY_PATH }}/${{ inputs.project_name }}-jupyter:${{ inputs.project_version }}
${{ env.DOCKER_REGISTRY_PATH }}/${{ inputs.project_name }}-jupyter:latest
context: ./docker/jupyter
build-args: |
JUPYTER_NOTEBOOK_IMAGE_REPOSITORY=jupyter/scipy-notebook:latest
cache-from: type=gha
cache-to: type=gha,mode=max
push: true