-
Notifications
You must be signed in to change notification settings - Fork 4
58 lines (52 loc) · 1.32 KB
/
release.yaml
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
name: Choria Release
on:
push:
tags:
- '*'
jobs:
el8_64:
runs-on: ubuntu-latest
steps:
- name: Build
uses: choria-io/actions/packager@main
with:
build_package: el8_64
packager_tag: el8-go.1.22
version: tag
el9_64:
runs-on: ubuntu-latest
steps:
- name: Build
uses: choria-io/actions/packager@main
with:
build_package: el9_64
packager_tag: el9-go.1.22
version: tag
upload:
needs:
- el8_64
- el9_64
runs-on: ubuntu-latest
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
- name: Artifacts normalization
shell: bash
run: |
cd artifacts
for i in foss*
do
mv -v $i $(echo $i|cut -d_ -f2-)
done
- name: Upload artifacts to Spaces
uses: jakejarvis/s3-sync-action@master
with:
args: --endpoint=https://ams3.digitaloceanspaces.com --acl authenticated-read
env:
AWS_S3_BUCKET: choria-packages-ams
AWS_ACCESS_KEY_ID: ${{ secrets.SPACES_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.SPACES_SECRET_ACCESS_KEY }}
SOURCE_DIR: artifacts
DEST_DIR: release