Skip to content

Commit

Permalink
Init starter template
Browse files Browse the repository at this point in the history
  • Loading branch information
brianrahadi committed Jan 14, 2024
1 parent 2a83eca commit fc581c8
Show file tree
Hide file tree
Showing 32 changed files with 811 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
50 changes: 50 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# This is a basic workflow to help you get started with Actions
# -- Taken from Kyle Saburao's deployment workflow file
# https://github.com/kylesaburao/kylesaburao.github.io/blob/main/.github/workflows/deploy.yml

name: CI/CD

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3

- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: build-artifacts
path: build/

deploy:
needs: build
runs-on: ubuntu-latest

steps:
- name: Pull artifacts
uses: actions/download-artifact@v3
with:
name: build-artifacts
path: build/

- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
build_dir: build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Binary file added build/.DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions build/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
systemshacks.sfussss.org
Binary file added build/assets/.DS_Store
Binary file not shown.
Binary file added build/assets/fonts/Hubot-Sans-Regular.woff2
Binary file not shown.
Binary file added build/assets/fonts/Hubot-Sans-SemiBold.woff2
Binary file not shown.
Binary file added build/assets/images/.DS_Store
Binary file not shown.
Binary file added build/assets/images/footer-seb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions build/assets/images/fun-fact-clip.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions build/assets/images/icons/chevron-down.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions build/assets/images/icons/fun-fact-leaf.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions build/assets/images/icons/icon-discord.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions build/assets/images/icons/icon-facebook.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions build/assets/images/icons/icon-instagram.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions build/assets/images/icons/icon-linkedin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions build/assets/images/icons/icon-location.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions build/assets/images/icons/icon-people.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions build/assets/images/icons/icon-time.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit fc581c8

Please sign in to comment.