-
Notifications
You must be signed in to change notification settings - Fork 5
42 lines (39 loc) · 1.44 KB
/
release-stable.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
name: Release stable packages
on:
workflow_call:
inputs:
new_release:
description: 'If `latest_release` file should be updated.'
default: false
type: boolean
workflow_dispatch:
inputs:
new_release:
description: 'If `latest_release` file should be updated.'
default: false
type: boolean
env:
MAJOR_VERSION: 23.05.3
jobs:
sync:
name: Moving dev packages to stable
runs-on: ubuntu-latest
env:
RCLONE_CONFIG_SPACES_TYPE: s3
RCLONE_CONFIG_SPACES_PROVIDER: DigitalOcean
RCLONE_CONFIG_SPACES_ENV_AUTH: false
RCLONE_CONFIG_SPACES_ACCESS_KEY_ID: ${{ secrets.DO_SPACE_ACCESS_KEY }}
RCLONE_CONFIG_SPACES_SECRET_ACCESS_KEY: ${{ secrets.DO_SPACE_SECRET_KEY }}
RCLONE_CONFIG_SPACES_ENDPOINT: ams3.digitaloceanspaces.com
RCLONE_CONFIG_SPACES_ACL: public-read
steps:
- name: Install rclone
run: |
TMP_FILE=$(mktemp)
wget https://downloads.rclone.org/v1.66.0/rclone-v1.66.0-linux-amd64.deb -O "$TMP_FILE"
sudo dpkg -i "$TMP_FILE"
- name: Copy packages
run: rclone sync -M --no-update-modtime -v --exclude "/targets/**" spaces:nethsecurity/dev/${{ env.MAJOR_VERSION }}/ spaces:nethsecurity/stable/${{ env.MAJOR_VERSION }}/
- name: Update latest release
if: inputs.new_release
run: rclone sync -v spaces:nethsecurity/dev/latest_release spaces:nethsecurity/stable/latest_release