32 lines
890 B
YAML
32 lines
890 B
YAML
name: Gitea Actions Demo
|
|
on: [push]
|
|
jobs:
|
|
Gitea-Actions:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: catthehacker/ubuntu:act-latest
|
|
# volumes:
|
|
# - ubuntu_hostedtoolcache:/opt/hostedtoolcache
|
|
# - gradle_cache:/root/.gradle
|
|
env:
|
|
DOCKER_REGISTRY: registry.cn-hangzhou.aliyuncs.com
|
|
DOCKER_USERNAME: rsjst
|
|
steps:
|
|
|
|
- name: Setup Java
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
distribution: zulu
|
|
java-version: 11
|
|
cache: gradle
|
|
|
|
|
|
- name: Get Meta
|
|
id: meta
|
|
run: |
|
|
echo REPO_NAME=$(echo ${GITHUB_REPOSITORY} | awk -F"/" '{print $2}') >> $GITHUB_OUTPUT
|
|
echo REPO_VERSION=$(echo ${{ github.ref }} | awk -F"/" '{print $3}' | awk -F"v" '{print $2}') >> $GITHUB_OUTPUT
|
|
|
|
- run: echo ${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.REPO_VERSION }}
|
|
|