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

Update git actions v4 #24

Merged
merged 2 commits into from
Jul 21, 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
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -44,8 +44,8 @@ jobs:
run: |
SHA=$(git rev-parse --short HEAD)
echo "COMMIT_SHA=${SHA}" >> $GITHUB_ENV
echo "::set-output name=sha::$SHA"
echo "::set-output name=semver::${{ steps.semver_parser.outputs.fullversion }}"
echo "sha=$SHA" >> $GITHUB_OUTPUT
echo "semver=${{ steps.semver_parser.outputs.fullversion }}" >> $GITHUB_OUTPUT

- name: Setup AMXXPawn Compiler
uses: wopox1337/setup-amxxpawn@master
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
mv addons/ -t publish/

- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: MultiModManagerCS-${{ env.COMMIT_SHA }}
path: publish/*
Expand All @@ -98,7 +98,7 @@ jobs:

steps:
- name: Deploying resources artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: MultiModManagerCS-${{needs.build.outputs.sha}}

Expand Down
2 changes: 1 addition & 1 deletion addons/amxmodx/scripting/include/mm_incs/version.inc
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@

#define MM_VERSION_MAJOR 2
#define MM_VERSION_MINOR 3
#define MM_VERSION_COMMIT 216
#define MM_VERSION_COMMIT 217

#define PLUGIN_VERSION fmt("v%d.%d.%d", MM_VERSION_MAJOR, MM_VERSION_MINOR, MM_VERSION_COMMIT)
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@

#define MM_VERSION_MAJOR 2
#define MM_VERSION_MINOR 3
#define MM_VERSION_COMMIT 216
#define MM_VERSION_COMMIT 217

#define MM_NATIVES_API_VER fmt("v%d.%d.%d", MM_VERSION_MAJOR, MM_VERSION_MINOR, MM_VERSION_COMMIT)