build #1154
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: build | |
| on: | |
| push: | |
| branches: | |
| - master | |
| schedule: | |
| - cron: '0 16 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: cachix/install-nix-action@v20 | |
| with: | |
| nix_path: nixpkgs=channel:nixpkgs-unstable | |
| - run: | | |
| cd nixos-modules/programs/chromium | |
| nix profile install nixpkgs#nixfmt-rfc-style nixpkgs#sops | |
| ./update.sh | nixfmt > extensions.nix | |
| cd ../../../ | |
| nix flake update | |
| git config --local user.email "3264117476@qq.com" | |
| git config --local user.name "github-actions[bot]" | |
| git add flake.lock | |
| git add nixos-modules/programs/chromium/extensions.nix | |
| git commit -m "Update flakes" || true | |
| - name: Push changes | |
| uses: ad-m/github-push-action@master | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| branch: ${{ github.ref }} |