-
-
Notifications
You must be signed in to change notification settings - Fork 0
72 lines (70 loc) · 2.59 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
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
name: publish
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
with:
path: gitinfo-lua
fetch-tags: true
fetch-depth: 0
- name: Check out texmf
uses: actions/checkout@v4
with:
repository: Xerdi/texmf-packaging
path: texmf
- name: Run the build process with Docker
uses: addnab/docker-run-action@v3
with:
image: maclotsen/texlive:with-gf
shell: bash
options: --rm -i -v ${{ github.workspace }}/texmf:/root/texmf -v ${{ github.workspace }}:/build
run: |
git config --global --add safe.directory /build/gitinfo-lua
make -C gitinfo-lua all
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref_name }}
draft: true
body: |
Release for version ${{ github.ref_name }}
- name: 'Upload Release Asset: CTAN Upload'
id: upload_release_asset_ctan_upload
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ github.workspace }}/gitinfo-lua/gitinfo-lua-${{ github.ref_name }}.tar.gz
asset_name: gitinfo-lua-${{ github.ref_name }}.tar.gz
asset_content_type: application/gzip
- name: 'Upload Release Asset: TDS Archive'
id: upload_release_asset_tds_archive
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ github.workspace }}/gitinfo-lua/gitinfo-lua-${{ github.ref_name }}.tds.tar.gz
asset_name: gitinfo-lua-${{ github.ref_name }}.tds.tar.gz
asset_content_type: application/gzip
- name: 'Upload Release Asset: Manual'
id: upload_release_asset_manual
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ github.workspace }}/gitinfo-lua/doc/gitinfo-lua.pdf
asset_name: gitinfo-lua-${{ github.ref_name }}.pdf
asset_content_type: application/pdf