Skip to content

Commit da8f30f

Browse files
authored
Merge pull request #13 from mikeodr/fix-actions
Fix github actions
2 parents 24fd745 + c1d9d01 commit da8f30f

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/generate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: Generate Resume Preview on PR
22
concurrency: preview-${{ github.ref }}
33
on:
44
pull_request:
5-
paths:
6-
- "resume.md"
75
types:
86
- opened
97
- reopened
@@ -14,17 +12,19 @@ jobs:
1412
generate-resume:
1513
name: Generate Resume
1614
runs-on: ubuntu-latest
17-
if: github.event.action != 'closed'
1815
steps:
1916
- name: Checkout code
2017
uses: actions/checkout@v4
18+
if: github.event.action != 'closed'
2119
- name: Build resume output
2220
uses: BaileyJM02/markdown-to-pdf@v1.2.0
21+
if: github.event.action != 'closed'
2322
with:
2423
input_path: resume.md
2524
output_dir: resume
2625
- name: Upload Artifacts
2726
uses: actions/upload-artifact@v4
27+
if: github.event.action != 'closed'
2828
with:
2929
name: Resume
3030
path: resume

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
- main
66
paths:
77
- "resume.md"
8+
tags:
9+
- "*"
810

911
jobs:
1012
generate-resume:

0 commit comments

Comments
 (0)