Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

Bump github.com/aws/aws-sdk-go from 1.45.19 to 1.45.24 (#627) #117

Bump github.com/aws/aws-sdk-go from 1.45.19 to 1.45.24 (#627)

Bump github.com/aws/aws-sdk-go from 1.45.19 to 1.45.24 (#627) #117

Workflow file for this run

name: Update documentation
# NOTE: This action requires that a github secret exists in this repository
# named NEIC_SDA_ACCESS, containing a github token with the
# "Actions: Read and Write" permission on the neicnordic/neic-sda
# repository.
on:
push:
branches:
- master
jobs:
build:
name: Trigger documentation rebuild in neic-sda
runs-on: ubuntu-latest
steps:
- run: |
result=$(curl -X POST \
-H "Authorization: Bearer ${{secrets.NEIC_SDA_ACCESS}}" \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/neicnordic/neic-sda/actions/workflows/aggregate.yml/dispatches \
-d "{\"ref\": \"master\", \"inputs\":{\"repository\": \"$GITHUB_REPOSITORY\"}}")
[ -z "$result" ] && true || (echo "$result" && false)