Skip to content

Commit

Permalink
Hard Coded Enabled Apply
Browse files Browse the repository at this point in the history
  • Loading branch information
TellToldTold committed Feb 24, 2024
1 parent c870176 commit 8818bec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
VERSION=${GITHUB_REF#refs/tags/}
TAGS="$DOCKER_IMAGE:$VERSION,$DOCKER_IMAGE:latest"
elif [[ $GITHUB_REF == refs/heads/main ]]; then
VERSION=$(git rev-parse --short ${{ github.sha }})
VERSION=main-$(git rev-parse --short ${{ github.sha }})
TAGS="$DOCKER_IMAGE:$VERSION,$DOCKER_IMAGE:latest"
elif [[ $GITHUB_REF == refs/heads/develop ]]; then
VERSION=dev-$(git rev-parse --short ${{ github.sha }})
TAGS="$DOCKER_IMAGE:$VERSION"
TAGS="$DOCKER_IMAGE:$VERSION,$DOCKER_IMAGE:test"
else
VERSION=$(git rev-parse --short ${{ github.sha }})
TAGS="$DOCKER_IMAGE:$VERSION"
Expand Down
2 changes: 1 addition & 1 deletion pages/JoinUs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Layout from "../components/Layout";
import styles from "@/styles/JoinUs/JoinUs.module.scss";
import SubmissionForm from "@/components/JoinUs/SubmissionForm";

const JoinUsEnabled = process.env.NEXT_PUBLIC_JOINUS_ENABLED === "true";
const JoinUsEnabled = true;

export default function JoinUs() {

Expand Down

0 comments on commit 8818bec

Please sign in to comment.