-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (39 loc) · 1.1 KB
/
actions.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
on:
push:
branches:
- '**'
jobs:
converge:
name: Converge
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install werf
uses: werf/actions/[email protected]
- name: Log in to registry
# This is where you will update the personal access token to GITHUB_TOKEN
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
- name: Run echo
run: |
werf version
docker version
echo $GITHUB_REPOSITORY
echo $GITHUB_SHA
- name: Run Build
run: |
. $(werf ci-env github --as-file)
echo "${{ secrets.STAGE_ENV }}" > .env.stage
werf export web --tag ghcr.io/$GITHUB_REPOSITORY:$GITHUB_SHA --dev
prod-deploy:
name: Deploy on prod
if: ${{ startsWith(github.ref, 'refs/tags/') }}
needs: converge
runs-on: ubuntu-latest
steps:
- name: Run echo
run: |
echo "See tag, deploy on prod"
echo tag = $GITHUB_REF_NAME