Merge pull request #155 from modos189/3.0.6 #166
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
name: Build IITC Button | |
# read-only repo token | |
# no access to secrets | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '*' | |
pull_request: | |
paths-ignore: | |
- '!.github/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- build_script: build_mv2 | |
- build_script: build_mv3_firefox | |
- build_script: build_mv3_chrome | |
- build_script: build_mv3_safari | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Linter | |
run: npm run lint | |
- name: Set BETA environment variables | |
if: startsWith(github.ref, 'refs/tags/v') != true | |
run: | | |
echo "BETA=true" >> $GITHUB_ENV | |
echo "GIT_REV_COUNT=`git rev-list --all --count`" >> $GITHUB_ENV | |
- name: Build | |
run: npm run ${{ matrix.build_script }} | |
- name: Get version from package.json | |
if: startsWith(github.ref, 'refs/tags/v') | |
uses: polyseam/[email protected] | |
id: get-version-key-from-json | |
with: | |
path-to-json: './package.json' | |
- name: Save metadata | |
run: | | |
mkdir -p ./build/.metadata | |
ORIGINAL_FILE_NAME=$(ls artifacts/*.zip) | |
FILE_NAME="${ORIGINAL_FILE_NAME##*/}" | |
FILE_NAME="${FILE_NAME%.zip}" | |
if [ "$GITHUB_EVENT_NAME" = "push" ]; then | |
if [[ "$GITHUB_REF" =~ ^refs/tags/ ]]; then | |
# Release build | |
echo "release" > ./build/.metadata/build_type | |
else | |
# Beta build from master branch | |
FILE_NAME="${FILE_NAME}-$(echo ${{ github.sha }} | cut -c 1-6)" | |
echo "beta" > ./build/.metadata/build_type | |
fi | |
echo ${{ github.sha }} > ./build/.metadata/commit | |
elif [ "$GITHUB_EVENT_NAME" = "pull_request" ]; then | |
# Build artifacts for PR | |
FILE_NAME="${FILE_NAME}-$(echo ${{ github.event.pull_request.head.sha }} | cut -c 1-6)" | |
echo "PR" > ./build/.metadata/build_type | |
echo ${{ github.event.pull_request.head.sha }} > ./build/.metadata/commit | |
echo ${{ github.event.number }} > ./build/.metadata/pr_number | |
fi | |
mv $ORIGINAL_FILE_NAME "./build/$FILE_NAME".zip | |
echo "GITHUB_SHA_SHORT=$(cat ./build/.metadata/commit | cut -c 1-6)" >> $GITHUB_ENV | |
echo "FILE_NAME=$FILE_NAME" >> $GITHUB_ENV | |
- uses: ncipollo/release-action@v1 | |
if: startsWith(github.ref, 'refs/tags/v') | |
env: | |
FILE_PATH: ./build/${{ env.FILE_NAME }}.zip | |
with: | |
allowUpdates: true | |
artifactErrorsFailBuild: true | |
artifacts: ${{ env.FILE_PATH }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.FILE_NAME }} | |
include-hidden-files: true | |
path: | | |
./build/ | |
collect: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download all artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
path: collected_artifacts | |
- name: Move artifacts to final directory | |
run: | | |
mkdir -p final_artifacts | |
echo "Moving contents from artifact directories to final_artifacts directory:" | |
for dir in collected_artifacts/*; do | |
if [ -d "$dir" ]; then | |
cp -rf "$dir"/* "$dir"/.metadata final_artifacts/ | |
fi | |
done | |
echo "Contents of final_artifacts directory:" | |
ls -la final_artifacts/ | |
- name: Get metadata | |
run: echo "GITHUB_SHA_SHORT=$(cat ./final_artifacts/.metadata/commit | cut -c 1-6)" >> $GITHUB_ENV | |
- name: Upload general artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: iitc-button-${{ env.GITHUB_SHA_SHORT }}-artifacts | |
include-hidden-files: true | |
path: final_artifacts/* |