Skip to content

Commit

Permalink
fix env definition in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
redxtech committed Apr 1, 2024
1 parent 925f10f commit 80c954d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 47 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ on:
- "v*"

env:
env:
CACHIX_AUTH_TOKEN: "${{ secrets.CACHIX_AUTH_TOKEN }}"
CACHIX_ACTIVATE_TOKEN: "${{ secrets.CACHIX_ACTIVATE_TOKEN }}"
CACHIX_AUTH_TOKEN: "${{ secrets.CACHIX_AUTH_TOKEN }}"
CACHIX_ACTIVATE_TOKEN: "${{ secrets.CACHIX_ACTIVATE_TOKEN }}"

jobs:
# system & home configurations
Expand Down
44 changes: 0 additions & 44 deletions .github/workflows/nix-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,50 +24,6 @@ jobs:
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- run: nix build .#devShells.x86_64-linux.default --print-build-logs --impure

# system & home configurations
# deploy-voyager:
# runs-on: ubuntu-latest
# steps:
# - name: Free Disk Space (Ubuntu)
# uses: jlumbroso/free-disk-space@main
# with:
# tool-cache: true
# - uses: actions/checkout@v4
# - uses: cachix/install-nix-action@v25
# with:
# nix_path: nixpkgs=channel:nixos-unstable
# - uses: cachix/cachix-action@v14
# with:
# name: gabedunn
# # If you chose signing key for write access
# signingKey: "${{ secrets.CACHIX_SIGNING_KEY }}"
# # If you chose API tokens for write access OR if you have a private cache
# authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
# - run: |
# spec=$(nix build --print-out-paths)
# cachix push gabedunn $spec
# cachix deploy activate $spec

# home-deck:
# runs-on: ubuntu-latest
# steps:
# - name: Free Disk Space (Ubuntu)
# uses: jlumbroso/free-disk-space@main
# with:
# tool-cache: true
# - uses: actions/checkout@v4
# - uses: cachix/install-nix-action@v25
# with:
# nix_path: nixpkgs=channel:nixos-unstable
# - uses: cachix/cachix-action@v14
# with:
# name: gabedunn
# # If you chose signing key for write access
# signingKey: "${{ secrets.CACHIX_SIGNING_KEY }}"
# # If you chose API tokens for write access OR if you have a private cache
# authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
# - run: nix build '.#homeConfigurations."gabe@deck".activationPackage' --print-build-logs

packages-beekeeper:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 80c954d

Please sign in to comment.