Sha256: 3a092b0dc4a8a4ac4b58135648761745d11e62a5e399a71f52b99779cd4e842b

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 KB

Contents

---
name: cron
on:
  schedule:
    - cron: "13 4 * * 1,3,5"
concurrency:
  group: cron
  cancel-in-progress: true
jobs:
  cron:
    runs-on: ubuntu-20.04
    steps:
      - uses: actions/checkout@v3
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: 2.7
      - run: bundle install
      - run: |
          bin/fief --token ${{ secrets.TOKEN }} --delay 1500 \
            --include jcabi/* \
            --include yegor256/* \
            --include sttc/* \
            --include objectionary/* \
            --include polystat/* \
            --include zerocracy/* \
            --include zold-io/* \
            --exclude jcabi/.github \
            --exclude yegor256/quiz \
            --exclude yegor256/hangman \
            --exclude objectionary/.github \
            --exclude polystat/.github \
            --to gh-pages
      - run: mkdir -p gh-pages/$(date +'%Y/%m/%d')
      - run: cp gh-pages/index.xml gh-pages/$(date +'%Y/%m/%d')/index.xml
      - uses: JamesIves/github-pages-deploy-action@v4.4.2
        with:
          branch: gh-pages
          folder: gh-pages
          clean: false

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fief-0.0.4 .github/workflows/cron.yml