mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
fea59c4863
Some checks failed
Build devcontainers / build-devcontainers (push) Waiting to run
Cache outputs / build-custom-packages (push) Waiting to run
Check flake outputs / check-outputs (push) Waiting to run
Publish every Git push to master to FlakeHub / flakehub-publish (push) Waiting to run
Build personalized bootstrap ISO / build-iso (x86_64-linux) (push) Waiting to run
Build project site / build (push) Waiting to run
Build project site / deploy (push) Blocked by required conditions
Update Firefox addons / update-firefox-addons (push) Has been cancelled
Bumps [DeterminateSystems/nix-installer-action](https://github.com/determinatesystems/nix-installer-action) from 14 to 16. - [Release notes](https://github.com/determinatesystems/nix-installer-action/releases) - [Commits](https://github.com/determinatesystems/nix-installer-action/compare/v14...v16) --- 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
903 B
YAML
29 lines
903 B
YAML
name: "Build devcontainers"
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- develop
|
|
jobs:
|
|
build-devcontainers:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: DeterminateSystems/nix-installer-action@v16
|
|
- uses: DeterminateSystems/magic-nix-cache-action@v8
|
|
with:
|
|
extra-conf: |
|
|
keep-going = true
|
|
- name: Build
|
|
run: |
|
|
nix build -f ./devcontainers --impure --print-out-paths --no-link > build_paths
|
|
env:
|
|
NIXPKGS_ALLOW_UNFREE: "1"
|
|
- name: Deploy devcontainers to GitHub registry
|
|
run: |
|
|
for image_archive in $(< build_paths); do
|
|
skopeo --insecure-policy copy \
|
|
--dest-creds="${{ github.repository_owner }}:${{ secrets.GITHUB_TOKEN }}" \
|
|
"docker-archive:${image_archive}" "docker://${{ github.repository }}"
|
|
done
|