-
Notifications
You must be signed in to change notification settings - Fork 22
110 lines (97 loc) · 2.86 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
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
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
update-packages:
runs-on: macos-latest
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v3
- name: prepare
run: |
brew install ruby
- name: package
run: |
ruby package.rb
- name: upload artifacts
uses: actions/upload-artifact@v3
with:
name: packages
path: temp/*.c3l
release:
runs-on: ubuntu-latest
needs: [update-packages]
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v3
- name: delete tag
continue-on-error: true
uses: actions/github-script@v6
with:
script: |
github.rest.git.deleteRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: 'tags/latest',
sha: context.sha
})
- name: create tag
uses: actions/github-script@v6
with:
script: |
github.rest.git.createRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: 'refs/tags/latest',
sha: context.sha
})
- uses: actions/download-artifact@v3
- id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: latest
release_name: Latest
draft: false
prerelease: false
- name: upload raylib
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: packages/raylib.c3l
asset_name: raylib.c3l
asset_content_type: application/zip
- name: upload sdl2
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: packages/sdl2.c3l
asset_name: sdl2.c3l
asset_content_type: application/zip
- name: upload tigr
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: packages/tigr.c3l
asset_name: tigr.c3l
asset_content_type: application/zip
- name: upload curl
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: packages/curl.c3l
asset_name: curl.c3l
asset_content_type: application/zip