Skip to content

Commit

Permalink
fix s3 preview deploy? (#10)
Browse files Browse the repository at this point in the history
* fix s3 preview deploy?

* update readme ci badge and preview deployment

* add readme updates this time?
  • Loading branch information
solderq35 authored May 7, 2024
1 parent 8749804 commit 7f691de
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 32 deletions.
30 changes: 0 additions & 30 deletions .github/workflows/pr.yml

This file was deleted.

34 changes: 34 additions & 0 deletions .github/workflows/test-build-s3.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: S3 Test Build
on:
pull_request:
branches:
- main

jobs:
build-deploy-s3:
name: Build / Deploy to S3 Test Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set-up Node
uses: actions/setup-node@v1
with:
node-version: 18
- name: AWS Creds
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-west-2
- name: yarn install
run: |
yarn install
- name: yarn build
env:
NODE_OPTIONS: --openssl-legacy-provider
run: |
yarn build
- name: deploy frontend to s3
run: |
aws s3 sync ./website/build s3://osu-so-wiki
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# OSU Sustainability Wiki

![Frontend Status](https://github.com/OSU-Sustainability-Office/osu-sustainability-office.github.io/actions/workflows/gh-pages.yml/badge.svg) ![PR Status](https://github.com/OSU-Sustainability-Office/osu-sustainability-office.github.io/actions/workflows/pr.yml/badge.svg)
![Frontend Status](https://github.com/OSU-Sustainability-Office/osu-sustainability-office.github.io/actions/workflows/gh-pages.yml/badge.svg) ![PR Status](https://github.com/OSU-Sustainability-Office/osu-sustainability-office.github.io/actions/workflows/test-build-s3.yml/badge.svg)

## Site URL (Try it Yourself!)

**https://osu-sustainability-office.github.io/**
- Production Deployment URL: https://osu-sustainability-office.github.io/
- Test Deployment URL: http://osu-so-wiki.s3-website-us-west-2.amazonaws.com/

## About

Expand Down

0 comments on commit 7f691de

Please sign in to comment.