Skip to content

Commit

Permalink
Merge pull request #38 from hack4impact-upenn/signup
Browse files Browse the repository at this point in the history
Reverting accidental pushes from git
  • Loading branch information
happyjoytotheworld authored Oct 27, 2024
2 parents f1f4ef5 + bffa945 commit b25395d
Show file tree
Hide file tree
Showing 4 changed files with 302 additions and 493 deletions.
82 changes: 41 additions & 41 deletions .github/workflows/dockerBuildAndDeploy.yaml
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
name: Create and publish the Docker image
on:
push:
branches: ['main']
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push client Docker image
uses: docker/build-push-action@v5
with:
context: ./client
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:client
labels: ${{ steps.meta.outputs.labels }}
- name: Build and push server Docker image
uses: docker/build-push-action@v5
with:
context: ./server
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:server
labels: ${{ steps.meta.outputs.labels }}
name: Create and publish the Docker image
on:
push:
branches: ['main']
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push client Docker image
uses: docker/build-push-action@v5
with:
context: ./client
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:client
labels: ${{ steps.meta.outputs.labels }}
- name: Build and push server Docker image
uses: docker/build-push-action@v5
with:
context: ./server
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:server
labels: ${{ steps.meta.outputs.labels }}
Loading

0 comments on commit b25395d

Please sign in to comment.