Compare commits

..

No commits in common. "6424e1fe86509d67f726924db682573f92743c41" and "cba5e68fe2462f0c7624d8019dd2239e6171fc67" have entirely different histories.

8 changed files with 9 additions and 72 deletions

View File

@ -2,14 +2,14 @@ image: registry.gitlab.com/pages/hugo:latest
stages: stages:
- build - build
- deploy - vps
variables: variables:
GIT_SUBMODULE_STRATEGY: recursive GIT_SUBMODULE_STRATEGY: recursive
# This build stage will also leave artifacts ready for gitlab pages to use # Only because it's broken right now
pages: build:
stage: build stage: build
only: only:
refs: refs:
@ -19,30 +19,6 @@ pages:
artifacts: artifacts:
paths: paths:
- public - public
build-resume.shockrah.xyz:
stage: build
only: only:
refs: - master
- master
script:
- hugo
artifacts:
paths:
- public
deploy-resume.shockrah.xyz:
stage: deploy
image:
name: amazon/aws-cli:2.2.25
entrypoint: [""]
only:
refs:
- master
needs:
- build-resume.shockrah.xyz
before_script:
- bash scripts/verify-aws-fields.sh
script:
- aws s3 cp public/ s3://resume.shockrah.xyz --recursive

View File

@ -1,8 +0,0 @@
---
institution: AWS Certified Cloud Practioneer
when: June 2023
degree: Certificate
certlink: https://www.credly.com/badges/59db6298-f69d-4ad3-9ffb-74c8431d7a4d/public_url
rank: 2
---

View File

@ -1,6 +1,6 @@
--- ---
institution: California State University Monterey Bay institution: California State University Monterey Bay
when: Dec 2019 when: Graduated Dec 2019
degree: Bachelor's degree: Bachelor's
rank: 5 rank: 5
--- ---

View File

@ -1,8 +1,7 @@
--- ---
institution: CompTIA Security+ Certified institution: CompTIA Security+ Certified
when: July 2021 when: Acheived July 2021
degree: Certification degree: Certification
certid: 83JZR9SPWDV1Q6CS
rank: 4 rank: 4
--- ---

View File

@ -1,8 +1,7 @@
--- ---
institution: Splunk Core User Certified institution: Splunk Core User Certified
when: August 2021 when: Acheived August 2021
degree: Certification degree: Certification
certlink: https://www.credly.com/badges/709380cd-ac24-48a2-953d-803d63eaae96
rank: 3 rank: 3
--- ---

View File

@ -1,8 +0,0 @@
---
company: SSNC
when: April 2022 - Current
title: Site Reliability Engineer
rank: -4
---

View File

@ -1,16 +0,0 @@
#!/bin/bash
set -e
echo "Checking to make sure all required AWS env vars are present"
[[ $AWS_DEFAULT_REGION != '' ]]
echo AWS_DEFAULT_REGION is set
[[ $AWS_DEFAULT_REGION != '' ]]
echo AWS_ACCESS_KEY_ID is set
[[ $AWS_DEFAULT_REGION != '' ]]
echo AWS_SECRET_ACCESS_KEY is set

View File

@ -6,14 +6,9 @@
<li style="list-style-type: none;"> <li style="list-style-type: none;">
<a><strong class="bigger">{{.Params.Institution}}</strong></a> <a><strong class="bigger">{{.Params.Institution}}</strong></a>
{{ if .Params.Degree }} {{ if .Params.Degree }}
<p class="text-muted">{{.Params.Degree}} acheived {{.Params.When}}</p> <p class="text-muted">{{.Params.When}}</p>
{{ end }}
{{ if .Params.Certlink }}
<a href="{{.Params.Certlink}}">Certificate Link</a>
{{ end }}
{{ if .Params.Certid }}
<p class="text-muted">Certificate id: {{.Params.Certid}}</p>
{{ end }} {{ end }}
<p>{{.Content}}</p>
</li> </li>
{{ end }} {{ end }}
</ul> </ul>