feat: auto generate arch repo list

generate test


GitHub Actions build:

add date
This commit is contained in:
Daniel Gibbs
2022-11-16 15:02:01 +00:00
parent 2a5e2f52fc
commit d45dff333c
2 changed files with 49 additions and 19 deletions

View File

@ -0,0 +1,31 @@
name: "Generate Arch Mirror List"
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
generate_arch_mirrors:
runs-on: ubuntu-latest
name: Generate Arch Mirror List
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Generate Arch Mirror List
id: generate
run: curl -L https://www.archlinux.org/mirrorlist/all/http | grep -oP 'https?://\K[^/]*' | sort -u >arch.txt
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
- name: Push to master branch
uses: Automattic/action-commit-to-branch@master
with:
branch: "master"
commit_message: "GitHub Actions build: ${{ steps.date.outputs.date }}"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"