auth and bluebubbles location #6
This file contains hidden or 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: Nix Flake action | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| nix-build: | |
| name: upload-docker-image | |
| runs-on: eepy-runner-set | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: nix run -j32 -L '.#pushDockerImageActions' | |
| - run: GIT_REV=${{ github.sha }} nu -c 'open .kube/version.yaml -r | from yaml | update value $"kokuzo.tailc38f.ts.net/personal-api:${{ github.sha }}" | to yaml | save .kube/version.yaml -f' | |
| - run: | | |
| git config --global user.name 'GitHub Actions' | |
| git config --global user.email '[email protected]' | |
| git add .kube/version.yaml | |
| git commit -m "update docker image tag" | |
| git push -f origin main:cd |