Skip to content

Updated with Dev Metrics #141

Updated with Dev Metrics

Updated with Dev Metrics #141

Workflow file for this run

name: generate pacman game
on:
schedule: # run automatically every 24 hours
- cron: "0 */24 * * *"
workflow_dispatch: # allows to manually run the job at any time
push: # run on every push on the main branch
branches:
- main
jobs:
generate:
permissions:
contents: write
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: generate pacman-contribution-graph.svg
uses: abozanona/pacman-contribution-graph@main
with:
github_user_name: la-b-ib
# push the content of <build_dir> to a branch
# the content will be available at https://raw.githubusercontent.com/la-b-ib/la-b-ib/output/<file>
- name: push pacman-contribution-graph.svg to the output branch
uses: crazy-max/ghaction-github-pages@v3.1.0
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}