-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #349 from F2I-Consulting/dev
v2.10.0.0
- Loading branch information
Showing
220 changed files
with
49,701 additions
and
62,028 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Actions to run when releasing | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
env: | ||
GH_TOKEN: ${{ secrets.RELEASE_TOKEN }} | ||
GITHUB_REF_NAME: ${{ github.ref_name }} | ||
|
||
jobs: | ||
# Remark : https://github.com/orgs/community/discussions/46034 | ||
add-checksum: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# It is necessary to checkout the repository for GitHub CLI to know which repository to target | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: ZIP checksum | ||
run: | | ||
gh release download --archive=zip | ||
shasum -a 256 *.zip > fesapi-${GITHUB_REF_NAME#v}.zip.sha256.txt | ||
gh release upload ${{ github.ref_name }} fesapi-${GITHUB_REF_NAME#v}.zip.sha256.txt | ||
- name: TAR.GZ checksum | ||
run: | | ||
gh release download --archive=tar.gz | ||
shasum -a 256 *.tar.gz > fesapi-${GITHUB_REF_NAME#v}.tar.gz.sha256.txt | ||
gh release upload ${{ github.ref_name }} fesapi-${GITHUB_REF_NAME#v}.tar.gz.sha256.txt | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
include(CMakeFindDependencyMacro) | ||
|
||
# Include the actual targets | ||
include("${CMAKE_CURRENT_LIST_DIR}/FesapiCppTargets.cmake") |
Oops, something went wrong.