Skip to content
This repository has been archived by the owner on Sep 1, 2023. It is now read-only.

Commit

Permalink
Automatically push configs
Browse files Browse the repository at this point in the history
  • Loading branch information
ineiti committed Aug 30, 2023
1 parent ee90baa commit 08c4463
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
build-and-push-image:
runs-on: ubuntu-22.04
permissions:
contents: read
contents: write
packages: write
steps:
- name: Checkout repository
Expand All @@ -27,7 +27,13 @@ jobs:
- name: Build requirements
run: |
sudo apt install -y protobuf-compiler
rm -rf backend/{configs,build}
make configs webapp-proto
git config --global user.name "Build Workflow"
git config --global user.email "build_workflow@users.noreply.github.com"
git add backend/configs
git commit -am "Configs generated on $( date )"
git push
- name: Build and push Docker image for nodes
# id: build-and-push-backend
Expand Down

0 comments on commit 08c4463

Please sign in to comment.