test ubuntu
This commit is contained in:
parent
ab394a7510
commit
3d792b929d
1 changed files with 5 additions and 5 deletions
|
@ -2,17 +2,17 @@ name: update-flake-lock
|
||||||
run-name: ${{ github.actor }} - update-flake-lock
|
run-name: ${{ github.actor }} - update-flake-lock
|
||||||
on:
|
on:
|
||||||
push
|
push
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
update-flake-lock:
|
update-flake-lock:
|
||||||
runs-on: alpine
|
runs-on: ubuntu
|
||||||
container:
|
container:
|
||||||
image: alpine:edge
|
image: ubuntu:22.04
|
||||||
steps:
|
steps:
|
||||||
- name: "Setup Runner"
|
- name: "Setup Runner"
|
||||||
run: |
|
run: |
|
||||||
apk update
|
apt update -y
|
||||||
apk add git nodejs nix --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing/
|
apt install git nodejs nix-bin -y
|
||||||
git config --global user.email "${{github.actor}}"
|
git config --global user.email "${{github.actor}}"
|
||||||
git config --global user.name "Albert J. Copeland"
|
git config --global user.name "Albert J. Copeland"
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
Loading…
Reference in a new issue