Skip to content

Commit

Permalink
feat: added s3 secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
cdxker committed Apr 11, 2024
1 parent 20c2f8d commit 23f3c27
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/push-server.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,24 @@
name: Create Docker Images
on:
pull_request:
paths:
- '.github/workflows/**'
push:
workflow_call:
secrets:
DOCKER_USERNAME:
required: true
DOCKER_PASSWORD:
required: true
AWS_ACCESS_KEY_ID:
required: true
AWS_SECRET_ACCESS_KEY:
required: true
workflow_dispatch:

jobs:
build_server:
name: Building Server Docker Image
runs-on: ubuntu-latest
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
steps:
- name: Checkout the repo
uses: actions/checkout@v4
Expand Down

0 comments on commit 23f3c27

Please sign in to comment.