-
Notifications
You must be signed in to change notification settings - Fork 8
59 lines (52 loc) · 1.73 KB
/
main.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
on: push
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Run tests
run: |
pip install .
render50 -h
touch foo.c && render50 -o foo.pdf foo.c && test -f foo.pdf
- name: Install pypa/build
run: python -m pip install build --user
- name: Build a binary wheel and a source tarball
run: python -m build --sdist --wheel --outdir dist/ .
- name: Deploy to PyPI
if: ${{ github.ref == 'refs/heads/main' }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
- name: Extract program version
id: program_version
run: |
echo ::set-output name=version::$(render50 --version | cut --delimiter ' ' --fields 2)
- name: Create Release
if: ${{ github.ref == 'refs/heads/main' }}
uses: actions/github-script@v6
with:
github-token: ${{ github.token }}
script: |
github.rest.repos.createRelease({
owner: context.repo.owner,
repo: context.repo.repo,
tag_name: "v${{ steps.program_version.outputs.version }}",
tag_commitish: "${{ github.sha }}"
})
- name: Re-deploy dependent
if: ${{ github.ref == 'refs/heads/main' }}
uses: actions/github-script@v6
with:
github-token: ${{ secrets.DEPLOY50_PAT }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'cs50',
repo: 'render.cs50.io',
workflow_id: 'main.yml',
ref: 'main'
});