Skip to content

mirrors.lst: add repo.jing.rocks #6

mirrors.lst: add repo.jing.rocks

mirrors.lst: add repo.jing.rocks #6

Workflow file for this run

on:
push:
branches:
- 'master'
paths:
- 'mirrors.lst'
name: Deploy to Github Pages
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Create file structure
run: make deploy
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
deploy:
name: Deploy
runs-on: ubuntu-latest
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1