Skip to content

Commit

Permalink
pusher
Browse files Browse the repository at this point in the history
  • Loading branch information
olegdayo committed Dec 1, 2024
1 parent 8a86b0a commit 7562492
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,29 @@ jobs:
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/validator:${{ github.sha }}
labels: ${{ steps.meta.outputs.labels }}

operations:
runs-on: ubuntu-latest
needs:
- gateway
- integrator
- validator
steps:
- name: Check Out
uses: actions/checkout@v4
with:
repository: 2Delight/mline-operations
ref: main
token: ${{ secrets.OPERATIONS_REPO_UPDATE }}

- name: Setup Git Config
run: |
git config user.name "GitHub Actions"
git config user.email "[email protected]"
- name: Update Tag
run: |
sed -i 's/TAG=.*/TAG=${{ github.sha }}/g' .env
git add .env
git commit -m "Tag update: ${{ github.sha }}"
git push

0 comments on commit 7562492

Please sign in to comment.