modify #14
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
name: Docker build latest image | |
on: | |
push: | |
branches: [dev] | |
# paths: ['src/**'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build and publish a Docker image for ${{ github.repository }} | |
uses: macbre/push-to-ghcr@master | |
with: | |
image_name: ${{ github.repository }} # it will be lowercased internally | |
github_token: ${{ secrets.PERSONAL_TOKEN }} | |
dockerfile: ./serv/Dockerfile | |
- name: clone repo | |
run: git clone https://${{secrets.PERSONAL_USERNAME}}:${{secrets.PERSONAL_TOKEN}}@github.com/b2network/devops.git | |
- name: modify | |
run: cd devops/devops_dev/message-channel/ && sed -i "s/gitTag:.*/gitTag:\ '${{github.sha}}'/g" ${{vars.DEVOPS_PROJECT}}-listener/dev-values*.yaml | |
- name: commit && push | |
run: | | |
cd devops | |
git config --global user.name ${{secrets.PERSONAL_USERNAME}} | |
git config --global user.email "[email protected]" | |
git add . | |
git commit -m "update gitTag to ${{github.sha}}" | |
git push origin main |