Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated release action to make it commit the latest changes to repo a… #6

Merged
merged 1 commit into from
Aug 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/makeRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ jobs:
rm /opt/amigarepo/ubuntu/pool/main/clib4*.deb
after_script: |
/root/regenerate-packages.sh
- name: Commit latest changes to repository
run: |
git config --global user.email "walkero@gmail.com"
git config --global user.name "walkero-gr"
git commit -a -m "Release clib4-${{ github.event.release.tag_name }} changes"
git push
# - name: Prepare OS4Depot release
# run: |
# mkdir os4depot-release
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ build/
clib4.lha
.idea/
clib4_1.0_amd64
clib4-*_amd64
*.deb
clib4/
10 changes: 5 additions & 5 deletions library/c.lib_rev.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#define VERSION 1
#define REVISION 0
#define REVISION 3
#define SUBREVISION 0

#define DATE "28.05.2024"
#define VERS "clib4.library 1.0.0"
#define VSTRING "clib4.library 1.0.0 (28.05.2024)\r\n"
#define VERSTAG "\0$VER: clib4.library 1.0.0 (28.05.2024)"
#define DATE "04.06.2024"
#define VERS "clib4.library 1.3.0"
#define VSTRING "clib4.library 1.3.0 (04.06.2024)\r\n"
#define VERSTAG "\0$VER: clib4.library 1.3.0 (04.06.2024)"
Loading