mirror of
https://github.com/AuxXxilium/arc-modules.git
synced 2024-11-23 14:51:01 +07:00
commit
6b986d9830
39
.github/workflows/build.yml
vendored
39
.github/workflows/build.yml
vendored
@ -127,23 +127,6 @@ jobs:
|
||||
git config --global user.name "AuxXxilium"
|
||||
sudo timedatectl set-timezone "Europe/Berlin"
|
||||
|
||||
- name: Calculate Version
|
||||
run: |
|
||||
# Calculate Version
|
||||
VERSION=""
|
||||
if [ -n "${{ inputs.version }}" ]; then
|
||||
VERSION="${{ inputs.version }}"
|
||||
else
|
||||
VERSION="`date +'%y.%m.%d'`"
|
||||
fi
|
||||
|
||||
if [ -n "${VERSION}" ]; then
|
||||
# Modify Source File
|
||||
echo "Version: ${VERSION}"
|
||||
echo "${VERSION}" >VERSION
|
||||
echo "VERSION=${VERSION}" >> $GITHUB_ENV
|
||||
fi
|
||||
|
||||
- name: Tar to Artifacts
|
||||
run: |
|
||||
if [ ! -d "${{ github.workspace }}/source/output" ]; then
|
||||
@ -161,9 +144,11 @@ jobs:
|
||||
[ -d "${MODULES_PATH}" ] && cp -Rvf "${MODULES_PATH}/." "${{ github.workspace }}/source/output"
|
||||
|
||||
if [ "${{ matrix.platform }}" = "epyc7002" ]; then
|
||||
VERSION="`date +'%y.%m.%d'`"
|
||||
echo "${VERSION}" >"${{ github.workspace }}/source/output/VERSION"
|
||||
tar -zcf ${{ github.workspace }}/source/${{ matrix.platform }}-${{ matrix.version }}-${{ matrix.parm }}.tgz -C ${{ github.workspace }}/source/output .
|
||||
else
|
||||
VERSION="`date +'%y.%m.%d'`"
|
||||
echo "${VERSION}" >"${{ github.workspace }}/source/output/VERSION"
|
||||
tar -zcf ${{ github.workspace }}/source/${{ matrix.platform }}-${{ matrix.parm }}.tgz -C ${{ github.workspace }}/source/output .
|
||||
fi
|
||||
@ -242,7 +227,7 @@ jobs:
|
||||
run: |
|
||||
git config --global user.email "info@auxxxilium.tech"
|
||||
git config --global user.name "AuxXxilium"
|
||||
sudo timedatectl set-timezone "Europe/Berlin"
|
||||
sudo timedatectl set-timezone "Europe/Berlin"
|
||||
|
||||
- name: Download from Artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
@ -251,6 +236,24 @@ jobs:
|
||||
pattern: modules-*
|
||||
merge-multiple: true
|
||||
|
||||
- name: Calculate Version
|
||||
run: |
|
||||
# Calculate Version
|
||||
VERSION=""
|
||||
if [ -n "${{ inputs.version }}" ]; then
|
||||
VERSION="${{ inputs.version }}"
|
||||
else
|
||||
VERSION="`date +'%y.%m.%d'`"
|
||||
fi
|
||||
|
||||
if [ -n "${VERSION}" ]; then
|
||||
# Modify Source File
|
||||
echo "Version: ${VERSION}"
|
||||
echo "${VERSION}" >VERSION
|
||||
echo "${VERSION}" >"./output/VERSION"
|
||||
echo "VERSION=${VERSION}" >> $GITHUB_ENV
|
||||
fi
|
||||
|
||||
- name: Zip Modules
|
||||
run: |
|
||||
zip -9 modules.zip -j output/*
|
||||
|
Loading…
Reference in New Issue
Block a user