-
Notifications
You must be signed in to change notification settings - Fork 125
88 lines (76 loc) · 2.93 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
name: Auto-release on PR merge
on:
# ATM, this is the closest trigger to a PR merging
push:
branches:
- master
jobs:
auto-release:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
steps:
- name: Checkout source
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Download auto
run: |
#curl -vL -o - "$(curl -fsSL https://api.github.com/repos/intuit/auto/releases/latest | jq -r '.assets[] | select(.name == "auto-linux.gz") | .browser_download_url')" | gunzip > ~/auto
# Pin so we don't break if & when
# <https://github.com/intuit/auto/issues/1778> is fixed.
# 11.0.5 is needed for <https://github.com/intuit/auto/issues/2432>
wget -O- https://github.com/intuit/auto/releases/download/v11.0.5/auto-linux.gz | gunzip > ~/auto
chmod a+x ~/auto
- name: Query 'auto' on type of the release
id: auto-version
run: |
# to be able to debug if something goes wrong
set -o pipefail
~/auto version -vv | tee /tmp/auto-version
version="$(sed -ne '/Calculated SEMVER bump:/s,.*: *,,p' /tmp/auto-version)"
echo "version=$version" >> "$GITHUB_OUTPUT"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Python
if: steps.auto-version.outputs.version != ''
uses: actions/setup-python@v5
with:
python-version: '^3.8'
- name: Install Python dependencies
if: steps.auto-version.outputs.version != ''
run: python -m pip install build twine
- name: Create release
if: steps.auto-version.outputs.version != ''
run: ~/auto shipit
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build & upload to PyPI
if: steps.auto-version.outputs.version != ''
run: |
python -m build
twine upload dist/*
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
- name: Generate Dockerfile
if: steps.auto-version.outputs.version != ''
run: bash gen-docker-image.sh
working-directory: utils
- name: Build Docker images
if: steps.auto-version.outputs.version != ''
run: |
docker build \
-t nipy/heudiconv:master \
-t nipy/heudiconv:unstable \
-t nipy/heudiconv:latest \
-t nipy/heudiconv:"$(git describe | sed -e 's,^v,,g')" \
.
- name: Push Docker images
if: steps.auto-version.outputs.version != ''
run: |
docker login -u "$DOCKER_LOGIN" --password-stdin <<<"$DOCKER_TOKEN"
docker push --all-tags nipy/heudiconv
env:
DOCKER_LOGIN: ${{ secrets.DOCKER_LOGIN }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
# vim:set sts=2: