Skip to content

Commit

Permalink
Update resume
Browse files Browse the repository at this point in the history
  • Loading branch information
davidedigrande committed Aug 24, 2024
0 parents commit b7c41fd
Show file tree
Hide file tree
Showing 3 changed files with 634 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on:
push:
branches: [ "main" ]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: reset-repository
run: |
git config --global user.name "davidedigrande"
git config --global user.email "davidedigrande.dev@gmail.com"
git rm -r --cached .
git commit -m "Remove old resume"
git switch --orphan update
git add .
git commit -m "Update resume"
git branch -D main
git branch -m main
git push origin +main:main
Loading

0 comments on commit b7c41fd

Please sign in to comment.