From d70b866fda0fed8400aa2d40ff15425b9f19ebf4 Mon Sep 17 00:00:00 2001 From: Terrill Yuhas Date: Wed, 20 Nov 2024 08:16:57 -0700 Subject: [PATCH] release v0.4 --- .github/workflows/release.yml | 4 ++-- hello.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4888aab..53c902a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,9 +27,9 @@ jobs: - name: Build run: | - make + gcc hello.c -o hello mkdir -p installation/usr/local/bin - cd src && make install DESTDIR=../installation + cp hello installation/usr/local/bin - name: Extract version from github.ref id: extract_version diff --git a/hello.c b/hello.c index c48e1e1..9689263 100644 --- a/hello.c +++ b/hello.c @@ -5,7 +5,7 @@ int main() { // writing print statement to print hello - printf("Hello"); + printf("Hello everyone"); return 0; } \ No newline at end of file