-
Notifications
You must be signed in to change notification settings - Fork 757
36 lines (28 loc) · 962 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# This is a basic workflow to help you get started with Actions
name: build-resume
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
paths:
- 'markdown/**'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build-resume:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Test directory contents
run: 'ls -al'
- name: Build resume
uses: ./actions
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
# Artifact name
name: Resume PDF # optional, default is artifact
# A file, directory or wildcard pattern that describes what to upload
path: output/*.pdf