38 lines
918 B
YAML
38 lines
918 B
YAML
name: test ci
|
|
run-name: test run name
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
env:
|
|
DAY_OF_WEEK: Monday
|
|
|
|
jobs:
|
|
java-ci:
|
|
runs-on: maven-3.8
|
|
steps:
|
|
- name: Checkout code
|
|
uses: https://gitea.com/actions/checkout@v3
|
|
|
|
- name: Checkout test
|
|
run: |
|
|
echo "1.${{ gitea.ref }}"
|
|
echo "2.${{ gitea.event_name }}"
|
|
echo "3.${{ runner.os }}"
|
|
echo "4.${{ gitea.repository }}"
|
|
|
|
- name: Build code
|
|
run: |
|
|
mvn clean install
|
|
mkdir app
|
|
cp target/*.jar app
|
|
|
|
- name: Build image
|
|
run: |
|
|
docker build -t harbor.hzbb.top/test/springboot-helloworld:v0.0.2 .
|
|
|
|
- name: Push image
|
|
run: |
|
|
docker login -u hzbb -p Hzbb@12354 harbor.hzbb.top
|
|
docker build -t harbor.hzbb.top/test/springboot-helloworld:v0.0.2 . |