forked from Hithomelabs/CFTunnels
45 lines
1.7 KiB
YAML
45 lines
1.7 KiB
YAML
name: sample gradle build and test
|
|
run-name: Build started by $ {{gitea.actor}}
|
|
on:
|
|
push:
|
|
branches: [test]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: catthehacker/ubuntu:act-latest
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- name: JDK setup
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: 'zulu'
|
|
java-version: '17'
|
|
- name: Validate Gradle Wrapper
|
|
uses: gradle/actions/wrapper-validation@v3
|
|
- name: Get latest tag
|
|
run: echo "VERSION=$(git describe --tags --abbrev=0)"
|
|
- name: Increment version
|
|
run: echo "NEW_VERSION=$(echo $VERSION | awk -F'v' '{print $2}' | awk -F. '{print "v"$1"."$2"."$3+1}')"
|
|
- name: Extract commit message
|
|
run: echo "COMMIT_MESSAGE=$((git log -1 --pretty=%B)"
|
|
- name: Create and push tag
|
|
run: |
|
|
git tag -a ${NEW_VERSION} -m "${COMMIT_MESSAGE}"
|
|
git push origin ${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 bootBuildImage --imageName=192.168.0.100:8928/hithomelabs/cftunnels:${NEW_VERSION}
|
|
- name: Tag image as test
|
|
run: docker tag 192.168.0.100:8928/hithomelabs/cftunnels:${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:${NEW_VERSION}
|