-
Notifications
You must be signed in to change notification settings - Fork 8
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 #132 from mia-ajuda/215-CD-script
215 - Deployment scripts
- Loading branch information
Showing
6 changed files
with
86 additions
and
135 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,40 @@ | ||
name: build, test and lint | ||
|
||
on: | ||
push : | ||
branches : [ "**" ] | ||
pull_request: | ||
types: [ opened ] | ||
|
||
jobs: | ||
build-test: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
shell: bash | ||
|
||
steps: | ||
- name: 🏗 Setup repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: 🏗 Setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: lts/* | ||
cache: yarn | ||
cache-dependency-path: yarn.lock | ||
|
||
- name: 🏗 Config files | ||
run: | | ||
echo "$FIREBASE_CONFIG_DEV" > ./src/config/firebaseAuthConfig.js | ||
env: | ||
FIREBASE_CONFIG_DEV: ${{ secrets.FIREBASE_CONFIG_DEV }} | ||
|
||
- name: 📦 Install dependencies | ||
run: yarn install --pure-lockfile --non-interactive | ||
|
||
- name: 📦 Run test | ||
run: yarn test | ||
|
||
- name: 📦 Run lint | ||
run: yarn lint |
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,43 @@ | ||
name: submit image to dockerhub | ||
|
||
on: | ||
push : | ||
branches : [ master, develop ] | ||
|
||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
env: | ||
IMAGE_NAME: ${{ secrets.DOCKER_REPOSITORY }}:${{ github.sha }} | ||
FIREBASE_CONFIG_DEV: ${{ secrets.FIREBASE_CONFIG_DEV }} | ||
FIREBASE_CONFIG: ${{ secrets.FIREBASE_CONFIG }} | ||
RCLONE_CONFIG: ${{ secrets.RCLONE_CONFIG }} | ||
|
||
steps: | ||
- name: 🏗 Setup repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: 🏗 Config dev files | ||
if: github.ref == 'refs/heads/develop' | ||
run: | | ||
echo "$FIREBASE_CONFIG_DEV" > ./src/config/firebaseAuthConfig.js | ||
echo "$RCLONE_CONFIG" > ./config/rclone.conf | ||
echo "TAG=latest" >> "$GITHUB_ENV" | ||
- name: 🏗 Config prod files | ||
if: github.ref == 'refs/heads/master' | ||
run: | | ||
echo "$FIREBASE_CONFIG" > ./src/config/firebaseAuthConfig.js | ||
echo "$RCLONE_CONFIG" > ./config/rclone.conf | ||
echo "TAG=stable" >> "$GITHUB_ENV" | ||
- name: 📦 Docker login | ||
run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_ACCESS_TOKEN }} | ||
|
||
- name: 📦 Docker push image | ||
run: | | ||
docker build . -t "$IMAGE_NAME" | ||
docker push "$IMAGE_NAME" | ||
docker tag "$IMAGE_NAME" ${{ secrets.DOCKER_REPOSITORY }}:"$TAG" | ||
docker push ${{ secrets.DOCKER_REPOSITORY }}:"$TAG" |
This file was deleted.
Oops, something went wrong.
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