James Andariese
dd43d870e2
All checks were successful
Github Actions Demo / Explore-Gitea-Actions (push) Successful in 1m11s
20 lines
804 B
YAML
20 lines
804 B
YAML
name: Github Actions Demo
|
|
run-name: ${{ github.actor }} is testing out GitHub Actions (on Gitea) 🚀
|
|
on: [push]
|
|
|
|
jobs:
|
|
Explore-Gitea-Actions:
|
|
runs-on: metal-docker
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
- run: |
|
|
env
|
|
docker build --progress plain --label "org.opencontainers.image.source=https://$GITHUB_SERVER_URL/$GITHUB_REPOSITORY" --iidfile iid.txt .
|
|
stringprefix() { [ ${#1} -le $2 ] && echo $1 && return 0 || stringprefix "${1%?}" $2 ; }
|
|
SHORTSHA="$(stringprefix "$GITHUB_SHA" 8)"
|
|
for TAG in "$SHORTSHA" "$GITHUB_REF_NAME";do
|
|
docker tag "`cat iid.txt`" "$DOCKER_REGISTRY/$GITHUB_REPOSITORY:$TAG"
|
|
docker push "$DOCKER_REGISTRY/$GITHUB_REPOSITORY:$TAG"
|
|
done
|