-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
35 lines (29 loc) · 993 Bytes
/
action.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
name: "Gradescope Autograder Continuous Deployment Helper"
description: "A GitHub Action to help with the automated deployment of gradescope autograders"
author: "Gregory Bell"
inputs:
course_id:
description: "Set the course id for which this action is deployed."
required: true
gradescope_username:
description: "Set the gradescope service user's username."
required: true
gradescope_password:
description: "Set the gradescope service user's password."
required: true
gradescope_assignment_id:
description: "Set the gradescope assignment id."
required: true
artifact_path:
description: "The path the artifact was produced on."
required: true
runs:
using: docker
image: docker://ghcr.io/csci128/gradescopecdhelper:v1
args:
- /usr/bin/google-chrome
- ${{inputs.artifact_path}}
- ${{inputs.gradescope_assignment_id}}
- ${{inputs.course_id}}
- ${{inputs.gradescope_username}}
- ${{inputs.gradescope_password}}