-
-
Notifications
You must be signed in to change notification settings - Fork 16
48 lines (42 loc) · 1.52 KB
/
publish-release.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
name: hdf5 plugins publishrelease
# Triggers the workflow on demand
on:
workflow_dispatch:
inputs:
use_tag:
description: 'HDF5 Plugins Release version tag'
type: string
required: true
target_dir:
description: 'HDF5 Plugins target bucket directory'
type: string
required: true
permissions:
contents: read
jobs:
publish-tag:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Get Sources
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0
ref: '${{ github.head_ref || github.ref_name }}'
- name: Get plugins release
uses: dsaltares/fetch-gh-release-asset@master
with:
repo: 'HDFGroup/hdf5_plugins'
version: 'tags/${{ inputs.use_tag }}'
regex: true
target: 'PLUGINS/'
file: '${{ inputs.use_hdf }}-*.*'
- name: Setup AWS CLI
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}
- name: Sync release to S3 bucket
run: |
aws s3 sync ./PLUGINS s3://${{ secrets.AWS_S3_BUCKET }}/${{ vars.TARGET_PATH }}/${{ inputs.target_dir }}/downloads --delete