forked from Hithomelabs/CFTunnels
The Portainer redeploy endpoint POST /api/deploy/{stackId} requires
POST requests. wget defaults to GET, so --method=POST is needed.
Applied to both Dev (test_image_build_push.yml) and Prod
(prod_image_tag_promote.yaml) workflow files.
80 lines
3.2 KiB
YAML
80 lines
3.2 KiB
YAML
name: sample gradle build and test
|
|
run-name: Build started by ${{ gitea.actor }}
|
|
on:
|
|
push:
|
|
branches: [test]
|
|
jobs:
|
|
tag:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
new_version: ${{ steps.new_version.outputs.new_version }}
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Get new version
|
|
id: new_version
|
|
run: |
|
|
VERSION=$(git describe --tags --abbrev=0)
|
|
echo "Current version: ${VERSION}"
|
|
MAJOR=$(echo ${VERSION} | cut -d "." -f 1)
|
|
MINOR=$(echo ${VERSION} | cut -d "." -f 2)
|
|
PATCH=$(echo ${VERSION} | cut -d "." -f 3)
|
|
NEW_PATCH=$((PATCH + 1))
|
|
NEW_VERSION="${MAJOR}.${MINOR}.${NEW_PATCH}"
|
|
echo "New version: ${NEW_VERSION}"
|
|
echo "new_version=${NEW_VERSION}" >> $GITHUB_OUTPUT
|
|
build_tag_push:
|
|
runs-on: ubuntu-latest
|
|
needs: tag
|
|
container:
|
|
image: 192.168.0.100:8928/hithomelabs/ci-runner:1.0.0
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Install JDK (Alpine package)
|
|
run: |
|
|
apk add --no-cache openjdk17-jdk
|
|
echo "JAVA_HOME=/usr/lib/jvm/java-17-openjdk" >> "$GITHUB_ENV"
|
|
- name: Validate Gradle Wrapper (offline checksum)
|
|
run: |
|
|
sha256sum --check gradle/wrapper/gradle-wrapper.jar.sha256
|
|
- name: Create and push tag
|
|
run: |
|
|
echo "New version: ${{ needs.tag.outputs.new_version }}"
|
|
git config --global user.name "${{ gitea.actor }}"
|
|
git config --global user.email "${{ gitea.actor }}@users.noreply.github.com"
|
|
git tag -a "${{ needs.tag.outputs.new_version }}" -m "Pushing new version ${{ needs.tag.outputs.new_version }}"
|
|
git push origin "${{ needs.tag.outputs.new_version }}"
|
|
- name: Log in to Gitea Docker Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: 'http://192.168.0.100:8928'
|
|
username: hitanshu
|
|
password: ${{ secrets.TOKEN }}
|
|
- name: Gradle build
|
|
run: ./gradlew :cftunnels-service:bootBuildImage --imageName=192.168.0.100:8928/hithomelabs/cftunnels:${{ needs.tag.outputs.new_version }}
|
|
- name: Tag image as test
|
|
run: docker tag 192.168.0.100:8928/hithomelabs/cftunnels:${{ needs.tag.outputs.new_version }} 192.168.0.100:8928/hithomelabs/cftunnels:test
|
|
- name: Push to Gitea Registry
|
|
run: |
|
|
docker push 192.168.0.100:8928/hithomelabs/cftunnels:test
|
|
docker push 192.168.0.100:8928/hithomelabs/cftunnels:${{ needs.tag.outputs.new_version }}
|
|
- name: Trigger Portainer Redeploy (Dev)
|
|
if: success()
|
|
env:
|
|
PORTAINER_AUTOMATION_URL: "http://192.168.0.100:8081"
|
|
STACK_ID: ${{ vars.CFTUNNELS_DEV_STACK_ID }}
|
|
API_KEY: ${{ secrets.PORTAINER_SERVICE_API_KEY }}
|
|
run: |
|
|
wget -q --no-check-certificate --timeout=30 \
|
|
--method=POST \
|
|
--header="X-API-Key: $API_KEY" \
|
|
-O - \
|
|
"$PORTAINER_AUTOMATION_URL/api/deploy/$STACK_ID" 2>&1 \
|
|
|| echo "Deploy trigger failed (non-fatal)"
|