Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hello #378

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

hello #378

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Manually Upload to Salesforce Unified Knowledge

on:
workflow_dispatch

jobs:
deploy:
name: Upload to Amazon S3
runs-on: ubuntu-latest
# These permissions are needed to interact with GitHub's OIDC Token endpoint.
permissions:
id-token: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Zipping files
run: zip -r ${{ github.event.repository.name }}.zip . -x '*.git*' '*.idea*'

- name: Configure AWS credentials from Test account
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}

- name: Copy files to the test website with the AWS CLI
run: |
aws s3 cp ${{ github.event.repository.name }}.zip s3://${{ secrets.AWS_BUCKET }}/${{ secrets.AWS_DIRNAME }}/${{ github.event.repository.name }}.zip
Binary file added 15ece6e4-13e4-4e44-8190-6d12b1d3ff21 (1).pdf
Binary file not shown.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
ud120-projects
==============

Starter project code for students taking Udacity ud120
again updated Starter project code for students taking Udacity ud120


random stufff



### Setup
- Create a virtual environment for Python 3.9 or higher.
- $ pip install -r requirements.txt
Expand Down