-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from OpenQDev/staging
Staging
- Loading branch information
Showing
4 changed files
with
54 additions
and
66 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
#git add . && git commit -m "updates" && git push && git tag -f staging-1.0.0 && git push origin -f staging-1.0.1 | ||
name: Build + Push OpenQ-CoinAPI | ||
|
||
on: | ||
push: | ||
tags: | ||
- "staging-*" | ||
- "production-*" | ||
|
||
jobs: | ||
build: | ||
outputs: | ||
ENVIRONMENT: ${{ steps.extract_environment.outputs.ENVIRONMENT }} | ||
name: Build OpenQ-CoinAPI | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Extract environment from tag | ||
id: extract_environment | ||
run: | | ||
ENVIRONMENT=$(echo "${{ github.ref_name }}" | sed 's/-.*//') | ||
echo "ENVIRONMENT=$ENVIRONMENT" >> $GITHUB_ENV | ||
echo "ENVIRONMENT=$ENVIRONMENT" >> $GITHUB_OUTPUT | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Docker build | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
file: ./Dockerfile | ||
push: true | ||
tags: openq/openq-coinapi:${{ github.ref_name }} | ||
tagHelm: | ||
needs: build | ||
uses: OpenQDev/OpenQ-Workflows/.github/workflows/tag.yml@main | ||
with: | ||
APP: coinapi | ||
VERSION: ${{ github.ref_name }} | ||
ENVIRONMENT: ${{ needs.build.outputs.ENVIRONMENT }} | ||
secrets: | ||
PAT: ${{ secrets.PAT }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
FROM node:18.14.1-alpine | ||
WORKDIR /app | ||
RUN apk update && apk upgrade && \ | ||
apk add --no-cache bash git | ||
RUN apk update && apk upgrade && apk add --no-cache bash git | ||
COPY package.json . | ||
RUN yarn | ||
COPY . . | ||
EXPOSE 8080 | ||
ENTRYPOINT yarn start | ||
ENTRYPOINT yarn start |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters