toolkit/.forgejo/workflows/release.yaml

29 lines
859 B
YAML
Raw Normal View History

2023-05-28 19:19:06 +00:00
name: Release
on:
push:
tags:
- '*'
jobs:
build_push:
runs-on: ubuntu-latest
container: docker:latest
steps:
- name: Install dependencies # not present in `docker` container but needed for `checkout` action
run: apk add --no-cache git nodejs
- name: Check out repository
uses: actions/checkout@v3
- name: Docker login
2023-09-01 21:58:13 +00:00
uses: actions/docker-login@v2
with:
2023-09-01 22:17:19 +00:00
registry: ${{secrets.DOCKER_REGISTRY}}
2023-09-01 22:02:27 +00:00
username: ${{secrets.DOCKER_USERNAME}}
password: ${{secrets.DOCKER_PASSWORD}}
2023-09-01 21:40:54 +00:00
- name: Build and push
uses: actions/docker-build-push@v4
with:
2023-09-01 21:41:20 +00:00
push: true
2023-09-01 21:50:27 +00:00
tags: |
2023-09-01 22:17:19 +00:00
${{secrets.DOCKER_REGISTRY}}/${{github.repository}}:${{github.ref_name}}
${{secrets.DOCKER_REGISTRY}}/${{github.repository}}:latest