Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
9af4e4b
refactor: change endpoints route
Feb 28, 2023
a0630a5
refactor: backend port
Mar 2, 2023
47886f4
intial commit
mmaquina Mar 7, 2023
bd0ed34
fix make publish
mmaquina Mar 7, 2023
bae05e3
fix aws login
mmaquina Mar 7, 2023
149d0a9
build for arm
mmaquina Mar 7, 2023
12c4efb
build for x86
mmaquina Mar 8, 2023
84dfc1c
change backend link
mmaquina Mar 8, 2023
ccb4d0c
backend url
mmaquina Mar 10, 2023
c0485f6
add pull and run script to workflow
mmaquina Mar 16, 2023
f49c30f
add pull and run
mmaquina Mar 16, 2023
858f66a
add pull and run
mmaquina Mar 16, 2023
d2d26b8
stage complete
mmaquina Mar 16, 2023
2be5496
stage complete
mmaquina Mar 16, 2023
6a56248
stage complete
mmaquina Mar 16, 2023
6d31865
test prod pipeline
mmaquina Mar 16, 2023
b38b4c7
fix makefile
mmaquina Mar 16, 2023
7732b31
fix makefile
mmaquina Mar 16, 2023
4839c53
test stage pipeline
mmaquina Mar 22, 2023
7b2fa6d
fix time-entries url
mmaquina Mar 27, 2023
4be90dd
fix .stage.env
mmaquina Mar 27, 2023
60b09dd
fix aws env
mmaquina Mar 28, 2023
50569ee
env
mmaquina Mar 28, 2023
e3d5ed8
fix findEntriesByProjectId endpoint url
mmaquina Mar 28, 2023
a921b9f
fix url createEntry
mmaquina Mar 28, 2023
f422533
create env file for prod
mmaquina Apr 4, 2023
e6bbd38
test url prod
mmaquina Apr 4, 2023
709012c
test url prod
mmaquina Apr 4, 2023
bc973bb
triggers by tag->prod publish release->stage
mmaquina Apr 4, 2023
9f68b79
restore old .stage.env, add newlines
mmaquina Apr 4, 2023
35925f5
disable triggers to azure workflow
mmaquina Apr 4, 2023
650e644
delete actions, scp files to ec2
mmaquina Apr 21, 2023
b868127
fix triggers
mmaquina Apr 21, 2023
48fbd7f
fix:change API_URL
mmaquina Apr 22, 2023
8e1f890
fix:change API_URL
mmaquina Apr 22, 2023
5a88ffd
merge from master
mmaquina Apr 22, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
triggers by tag->prod publish release->stage
  • Loading branch information
mmaquina committed Apr 4, 2023
commit bc973bbcc4fcb8ee74c1019308ea1ab1a9e14ea4
20 changes: 10 additions & 10 deletions .github/workflows/aws-ui-cd-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: time-tracker-ui-cd-prod

on:
push:
branches:
- 'fix-workflow'
tags:
- 'v*.*.*'

jobs:
cd:
Expand All @@ -26,15 +26,15 @@ jobs:
env:
GIT_CRYPT_KEY: ${{ secrets.GIT_CRYPT_KEY_PROD }}

# - name: Build the docker image
# run: |-
# docker build \
# --target production -t timetracker_ui -f Dockerfile_prod \
# .
- name: Build the docker image
run: |-
docker build \
--target production -t timetracker_ui -f Dockerfile_prod \
.

# - name: Publish docker image to prod aws container registry
# run: |
# make login publish_prod image_tag=$RELEASE_VERSION
- name: Publish docker image to prod aws container registry
run: |
make login publish_prod image_tag=$RELEASE_VERSION

- name: SCP files via ssh key
uses: appleboy/scp-action@master
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/aws-ui-cd-stage.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: time-tracker-ui-cd-stage

on:
push:
branches:
- 'asdffix-workflow'
release:
types:
- published

jobs:
cd:
Expand Down