Better CI

This commit is contained in:
Agatha Lovelace 2023-09-10 18:37:42 +02:00
parent d1c210c494
commit f7c014dd07
Signed by: sorceress
GPG Key ID: 01D0B3AB10CED4F8
1 changed files with 8 additions and 6 deletions

View File

@ -1,4 +1,4 @@
name: "Build legacy Nix package on Ubuntu"
name: "Build Nix package on Ubuntu"
on:
push:
@ -7,13 +7,15 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v12
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v23
- name: Building package
run: nix-build . -A packages.x86_64-linux.default
run: nix build
- name: Get repository name
run: echo "REPO_NAME=${GITHUB_REPOSITORY#*/}" >> $GITHUB_ENV
- name: Get commit hash
run: echo "COMMIT_HASH=${GITHUB_SHA::6}" >> $GITHUB_ENV
- uses: actions/upload-artifact@v3
with:
name: colorpickle-${{ env.COMMIT_HASH }}-x86_64-linux
path: result/bin/colorpickle
name: ${{ env.REPO_NAME }}-${{ env.COMMIT_HASH }}-x86_64-linux
path: result/bin/${{ env.REPO_NAME }}