Skip to content

Commit ba90bd1

Browse files
committed
CI workflow: artifact
1 parent ecaa231 commit ba90bd1

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.github/workflows/CI.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,16 @@ jobs:
8484
make install
8585
make clean
8686
87+
- name: Create Artifact
88+
run: |
89+
mkdir -p artifact/instead-cli
90+
cp -r release/* artifact/instead-cli
91+
cp README.md artifact/instead-cli/
92+
chmod +x artifact/instead-cli/instead-cli
93+
8794
- name: Publish Artifact
8895
uses: actions/upload-artifact@v3
8996
with:
9097
name: instead-cli
91-
path: release
98+
path: artifact
9299
retention-days: 1

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
latest
2+
* switched to rolling release model. Version is date.
3+
14
1.6
25
* metaparser 2.3 included.
36

Makefile.defs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION := 1.6
1+
VERSION := $(shell date +%y%m%d)
22

33
DESTDIR=./release/
44

0 commit comments

Comments
 (0)