-
Notifications
You must be signed in to change notification settings - Fork 2
181 lines (159 loc) · 5 KB
/
release-publish.yml
File metadata and controls
181 lines (159 loc) · 5 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
name: Release Publish
on:
release:
types: [published]
concurrency:
group: release-publish-${{ github.event.release.tag_name }}
cancel-in-progress: false
jobs:
prepare:
name: Prepare Release
runs-on: ubuntu-latest
permissions:
contents: read
actions: write
outputs:
tag: ${{ steps.release-meta.outputs.tag }}
version: ${{ steps.release-meta.outputs.version }}
prerelease: ${{ steps.release-meta.outputs.prerelease }}
steps:
- name: Validate and derive release metadata
id: release-meta
run: |
TAG="${{ github.event.release.tag_name }}"
if [[ ! "$TAG" =~ ^v[0-9]+\.[0-9]+\.[0-9]+(-[a-zA-Z0-9.]+)?$ ]]; then
echo "::error::Invalid version tag format: $TAG"
echo "Expected format: v1.2.3 or v1.2.3-rc.1"
exit 1
fi
VERSION="${TAG#v}"
PRERELEASE="${{ github.event.release.prerelease }}"
{
echo "tag=$TAG"
echo "version=$VERSION"
echo "prerelease=$PRERELEASE"
} >> "$GITHUB_OUTPUT"
publish_pypi:
name: Publish to PyPI
runs-on: ubuntu-latest
needs: prepare
permissions:
contents: read
actions: write
id-token: write
environment:
name: pypi
url: https://pypi.org/p/webarena-verified
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: refs/tags/${{ needs.prepare.outputs.tag }}
fetch-depth: 0
- name: Setup environment
uses: ./.github/actions/setup
with:
sync-args: --group dev
- name: Build package
run: uv build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
publish_docker:
name: Publish Docker Image
runs-on: ubuntu-latest
needs: prepare
permissions:
contents: read
actions: write
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: refs/tags/${{ needs.prepare.outputs.tag }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Compute image tags
id: image-tags
run: |
IMAGE="ghcr.io/${{ github.repository }}"
VERSION="${{ needs.prepare.outputs.version }}"
TAGS="$IMAGE:$VERSION"
if [ "${{ needs.prepare.outputs.prerelease }}" = "false" ]; then
TAGS="$TAGS,$IMAGE:latest"
fi
echo "tags=$TAGS" >> "$GITHUB_OUTPUT"
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: true
build-args: |
WBV_VERSION=${{ needs.prepare.outputs.version }}
tags: ${{ steps.image-tags.outputs.tags }}
platforms: linux/amd64,linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
publish_hf_dataset:
name: Publish HF Dataset
runs-on: ubuntu-latest
needs: prepare
permissions:
contents: read
actions: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: refs/tags/${{ needs.prepare.outputs.tag }}
fetch-depth: 0
- name: Setup environment
uses: ./.github/actions/setup
with:
sync-args: --group dev
- name: Build HF dataset artifacts
run: uv run inv dev.release.build-hf-dataset --version "${{ needs.prepare.outputs.tag }}"
- name: Test HF dataset artifacts (local parity)
run: uv run pytest tests/dataset/test_hf_dataset.py -v --hf-dataset-ref output/build/hf_dataset
- name: Publish HF dataset
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
run: |
uv run inv dev.release.upload-hf-dataset \
--version "${{ needs.prepare.outputs.tag }}" \
--folder-path output/build/hf_dataset \
--token "${HF_TOKEN}"
publish_docs:
name: Publish Docs
runs-on: ubuntu-latest
needs: prepare
permissions:
contents: write
actions: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: refs/tags/${{ needs.prepare.outputs.tag }}
fetch-depth: 0
- name: Setup environment
uses: ./.github/actions/setup
with:
sync-args: --group dev
configure-git-identity: 'true'
- name: Fetch gh-pages branch
run: |
git fetch origin gh-pages --depth=1 || echo "gh-pages branch does not exist yet"
- name: Deploy release docs
run: |
VERSION="${{ needs.prepare.outputs.version }}"
uv run mike deploy --push --update-aliases "$VERSION" latest
uv run mike set-default --push latest