Skip to content

🍭 AboutMe

🍭 AboutMe #6163

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: 🍭 AboutMe
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
schedule:
- cron: 20 */6 * * *
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
push:
branches: [ master ]
# A workflow run is made up of one or more jobs that will be executed as part of the workflow
jobs:
# This workflow contains a single job called "build"
build:
permissions:
contents: write
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
with:
fetch-depth: 0
# Runs a single command using the runners shell
- name: Run a one-line script
run: |
wget -O /home/runner/work/BlogPapers/BlogPapers/resources/dist/github-snake.svg https://raw.githubusercontent.com/SummerSec/SummerSec/master/dist/github-snake.svg
wget -O /home/runner/work/BlogPapers/BlogPapers/resources/dist/ocean.gif https://raw.githubusercontent.com/SummerSec/SummerSec/master/dist/ocean.gif
wget -O /home/runner/work/BlogPapers/BlogPapers/resources/dist/github-snake-dark.svg https://raw.githubusercontent.com/SummerSec/SummerSec/master/dist/github-snake-dark.svg
wget -O /home/runner/work/BlogPapers/BlogPapers/resources/os.gif https://raw.githubusercontent.com/SummerSec/SummerSec/master/os.gif
wget -O /home/runner/work/BlogPapers/BlogPapers/resources/Hi.gif https://raw.githubusercontent.com/SummerSec/SummerSec/master/Hi.gif
wget -O /home/runner/work/BlogPapers/BlogPapers/resources/AboutMe.md https://raw.githubusercontent.com/SummerSec/SummerSec/master/README.md
- name: Generate RSS, Atom, Sitemap from repo Markdown
run: python3 _scripts/generate_feed_and_sitemap.py
- name: Commit updated Sitemap
uses: stefanzweifel/git-auto-commit-action@v4
with:
branch: master
commit_message: 🍭Update Sitemap && AboutMe && Git Svg
file_pattern: /home/runner/work/BlogPapers/BlogPapers/resources/AboutMe.md /home/runner/work/BlogPapers/BlogPapers/resources/sitemap.xml /home/runner/work/BlogPapers/BlogPapers/resources/dist/github-snake-dark.svg /home/runner/work/BlogPapers/BlogPapers/resources/dist/ocean.gif /home/runner/work/BlogPapers/BlogPapers/resources/os.gif /home/runner/work/BlogPapers/BlogPapers/resources/Hi.gif /home/runner/work/BlogPapers/BlogPapers/resources/dist/github-snake.svg /home/runner/work/BlogPapers/BlogPapers/resources/atom.xml /home/runner/work/BlogPapers/BlogPapers/resources/rss.xml