rbenv-ruby-build/.github/workflows/mirror.yml

28 lines
682 B
YAML
Raw Normal View History

name: Mirror
on:
push:
branches:
- master
workflow_dispatch:
inputs:
beforeRef:
description: Git commit reference to start comparing from
required: true
jobs:
mirror:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Update download mirror
run: script/mirror update "${BEFORE_REF}.."
env:
BEFORE_REF: ${{ github.event.before }}${{ github.event.inputs.beforeRef }}
AMAZON_S3_BUCKET: ruby-build-mirror
AWS_ACCESS_KEY_ID: AKIAJKAUQVHU6X4CODDQ
AWS_SECRET_ACCESS_KEY: ${{ secrets.MIRROR_UPLOAD_SECRET }}
AWS_REGION: us-east-1