Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
alexvarko committed Dec 22, 2023
1 parent 687006c commit e2b5fc6
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ on:
push:
branches:
# - 'master'
# - 'main'
- '**'

env:
Expand Down Expand Up @@ -37,3 +36,15 @@ jobs:
run: |
. $(werf ci-env github --as-file)
werf export service --tag ghcr.io/$GITHUB_REPOSITORY:$GITHUB_SHA
# stage-deploy:
# name: Deploy on stage
# needs: converge
# runs-on: ubuntu-latest
# steps:
# - name: ConfigCreate
# run: |
# mkdir ~/.kube/
# echo "${{ secrets.KUBECONFIG }}" > config
# mv config ~/.kube/
# ls ~/.kube/
# kubectl set image deployment/solarity-stage-link-shortener link-shortener=ghcr.io/$GITHUB_REPOSITORY:$GITHUB_SHA -n stage
53 changes: 53 additions & 0 deletions .github/workflows/tag.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
on:
workflow_dispatch:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'

env:
CI_JOB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

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_REF_NAME
- name: Run Build
run: |
. $(werf ci-env github --as-file)
werf export service --tag ghcr.io/$GITHUB_REPOSITORY:$GITHUB_REF_NAME
# prod-deploy:
# name: Deploy on prod
# needs: converge
# runs-on: ubuntu-latest
# steps:
# - name: Run echo
# run: |
# echo "Tag was created - deploying on prod"
# echo tag = $GITHUB_REF_NAME
# - name: ConfigCreate
# run: |
# mkdir ~/.kube/
# echo "${{ secrets.KUBECONFIG }}" > config
# mv config ~/.kube/
# ls ~/.kube/
# kubectl set image deployment/solarity-prod-link-shortener link-shortener=ghcr.io/$GITHUB_REPOSITORY:$GITHUB_REF_NAME -n prod

0 comments on commit e2b5fc6

Please sign in to comment.