ChristianBingman is testing out GitHub Actions 🚀 #1
This file contains 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 and Deploy | |
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 | |
on: [push] | |
jobs: | |
container-build: | |
runs-on: christianbingman-com-runners | |
container: nixos/nix:latest | |
steps: | |
- name: Build container | |
run: nix build .#docker --extra-experimental-feature nix-command --extra-experimental-feature flakes | |
- name: Upload container | |
uses: actions/upload-artifact@v4 | |
with: | |
name: container.tar | |
path: ./result | |