We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecaa231 commit ba90bd1Copy full SHA for ba90bd1
.github/workflows/CI.yml
@@ -84,9 +84,16 @@ jobs:
84
make install
85
make clean
86
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
+
94
- name: Publish Artifact
95
uses: actions/upload-artifact@v3
96
with:
97
name: instead-cli
- path: release
98
+ path: artifact
99
retention-days: 1
ChangeLog
@@ -1,3 +1,6 @@
1
+latest
2
+ * switched to rolling release model. Version is date.
3
4
1.6
5
* metaparser 2.3 included.
6
Makefile.defs
@@ -1,4 +1,4 @@
-VERSION := 1.6
+VERSION := $(shell date +%y%m%d)
DESTDIR=./release/
0 commit comments