mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
e13daf9ebf
Bumps [DeterminateSystems/nix-installer-action](https://github.com/determinatesystems/nix-installer-action) from 4 to 5. - [Release notes](https://github.com/determinatesystems/nix-installer-action/releases) - [Commits](https://github.com/determinatesystems/nix-installer-action/compare/v4...v5) --- updated-dependencies: - dependency-name: DeterminateSystems/nix-installer-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
29 lines
865 B
YAML
29 lines
865 B
YAML
name: "Update Firefox addons"
|
|
on:
|
|
schedule:
|
|
# Every week on Monday.
|
|
- cron: '0 0 * * 1'
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- 'pkgs/firefox-addons'
|
|
jobs:
|
|
update-firefox-addons:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Set the date
|
|
id: metadata
|
|
run: echo "DATE=$(date +%F)" >> "$GITHUB_OUTPUT"
|
|
- uses: actions/checkout@v4
|
|
- uses: DeterminateSystems/nix-installer-action@v5
|
|
- env:
|
|
NIXPKGS_ALLOW_UNFREE: "1"
|
|
run: nix develop --impure -c mozilla-addons-to-nix pkgs/firefox-addons/firefox-addons.json pkgs/firefox-addons/default.nix
|
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: "firefox-addons: update as of ${{ steps.metadata.outputs.DATE }}"
|
|
file_pattern: pkgs/firefox-addons/
|