fvtt-never-stop-blowing-up/.gitlab-ci.yml
2024-09-22 17:33:15 +00:00

121 lines
3.9 KiB
YAML

stages:
- compile
- release
# Compile Job (runs on every commit)
compile:
stage: compile
image: ubuntu:latest
before_script:
# Install Node.js v21.7.3 manually
- apt-get update && apt-get install -y curl
- curl -fsSL https://deb.nodesource.com/setup_21.x | bash -
- apt-get install -y nodejs
- node -v # Verify the correct Node.js version
# Install Gulp globally
- npm install --global gulp-cli
- gulp --version # Verify Gulp is installed
script:
- npm install
- gulp compile
only:
- branches
# Release Job (manually triggered with version)
release:
stage: release
image: ubuntu:latest # Or any other basic image
before_script:
# Install Node.js v21.7.3 manually
- apt-get update && apt-get install -y curl jq git openssh-client
- curl -fsSL https://deb.nodesource.com/setup_21.x | bash -
- apt-get install -y nodejs
- node -v # Verify the correct Node.js version
# Install Gulp globally
- npm install --global gulp-cli
- gulp --version # Verify Gulp is installed
# Prepare SSH
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
# Decode and set up the SSH private key
- echo $SSH_PRIVATE_KEY_ENCODED | tr -d '\r\n' | base64 --decode > ~/.ssh/id_rsa
# Set permissions
- chmod 600 ~/.ssh/id_rsa
# Start the SSH agent and add the key
- eval $(ssh-agent -s)
- ssh-add ~/.ssh/id_rsa
# Add GitLab to known hosts to prevent authenticity prompt
- ssh-keyscan gitlab.com >> ~/.ssh/known_hosts
# Set Git configuration
- git config --global user.name "GitLab CI"
- git config --global user.email "ci@gitlab.com"
# Update the Git remote to use SSH
- git remote set-url origin git@gitlab.com:wintermyst/kidsonbrooms.git
# Fetch and check out the master branch
- git fetch --unshallow
- git checkout master
script:
# Check if VERSION is provided
- |
if [ -z "$VERSION" ]; then echo "Error: VERSION variable is required." && exit 1; fi
- npm install
# Run Gulp release task (includes zipping)
- gulp release
# Create a release on GitLab
- |
export RELEASE_RESPONSE=$(curl --request POST \
--header "PRIVATE-TOKEN: ${GITLAB_PAT}" \
--header "Content-Type: application/json" \
--data '{
"name": "Release v'$VERSION'",
"tag_name": "v'$VERSION'",
"description": "Release v'$VERSION'",
"ref": "master",
"assets": {
"links": [
{
"name": "Download kidsonbrooms.zip",
"url": "https://gitlab.com/wintermyst/kidsonbrooms/-/jobs/$CI_JOB_ID/artifacts/download"
}
]
}
}' "https://gitlab.com/api/v4/projects/$CI_PROJECT_ID/releases")
# Get the release URL from the response
- export RELEASE_URL=$(echo $RELEASE_RESPONSE | jq -r '.assets.links[0].url')
# Update the system.json file with the release URL
- |
sed -i "s|\"download\":.*|\"download\": \"$RELEASE_URL\",|" system.json
- git add system.json
- git commit -m "Update system.json with release URL"
- git push origin master
# Publish the release to the Foundry API
- |
curl -X POST https://api.foundryvtt.com/_api/packages/release_version/ \
-H "Authorization: $FOUNDRY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"id": "Your-Package-ID",
"release": {
"version": "'$VERSION'",
"manifest": "https://gitlab.com/wintermyst/kids-nbrooms/-/raw/master/system.json",
"notes": "https://gitlab.com/wintermyst/kidsonbrooms/releases/tag/v'$VERSION'",
"compatibility": {
"minimum": "12.331",
"verified": "12.331",
"maximum": ""
}
}
}'
only:
- master
when: manual
allow_failure: false
artifacts:
paths:
- kidsonbrooms.zip
expire_in: never