action-demo/.gitea/workflows/build.yaml

23 lines
626 B
YAML
Raw Normal View History

2023-03-21 16:11:16 +08:00
name: Gitea Actions Demo
2023-03-21 16:13:14 +08:00
on: [push]
2023-03-21 16:11:16 +08:00
jobs:
2023-03-21 17:09:02 +08:00
Gitea-Actions:
runs-on: ubuntu-latest
2023-03-22 10:00:32 +08:00
container:
image: catthehacker/ubuntu:act-latest
2023-03-22 10:40:47 +08:00
env:
2023-03-22 10:43:07 +08:00
DOCKER_REGISTRY: registry.cn-hangzhou.aliyuncs.com
DOCKER_USERNAME: rsjst
2023-03-21 16:11:16 +08:00
steps:
2023-03-21 16:13:14 +08:00
2023-03-22 10:36:05 +08:00
- name: Get Meta
id: meta
2023-03-22 10:43:07 +08:00
run: |
echo ::set-output name=REPO::`echo ${GITHUB_REPOSITORY} | awk -F"/" '{print $2}'`
echo ::set-output name=VERSION::`echo ${GITHUB_REF} | awk -F"/" '{print $4}' | awk -F"v" '{print $2}'`
2023-03-22 10:36:05 +08:00
2023-03-22 10:43:07 +08:00
- run: echo ${{ env.DOCKER_REGISTRY }}/${{ env.DOCKER_USERNAME }}/${{ steps.meta.outputs.REPO }}:latest
2023-03-21 16:11:16 +08:00