-
Notifications
You must be signed in to change notification settings - Fork 1
59 lines (47 loc) · 1.33 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Release
on:
push:
tags: ['r*']
pull_request:
# permissions:
# contents: write
# id-token: write
# pages: write
jobs:
build-all:
runs-on: ubuntu-latest
steps:
- name: Check Out Code
uses: actions/checkout@v2
- name: Set up Docker
uses: docker/setup-buildx-action@v1
- name: Set up Task
run: |
sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b ~/.local/bin
echo "Task version: $(task --version)"
- name: Login to DockerHub
uses: docker/login-action@v3
with:
registry: https://ghcr.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
-
name: Extract branch or tag name
id: extract_branch
run: |+
name=${GITHUB_REF##*/}
echo "branch_or_tag=v${name:1}" >> $GITHUB_OUTPUT
- name: Build All
run: |
task docker-build-all tag=${{ steps.extract_branch.outputs.branch_or_tag }}
-
name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.extract_branch.outputs.branch_or_tag }}
release_name: Release ${{ steps.extract_branch.outputs.branch_or_tag }}
draft: false
prerelease: true