forked from terraform-docs/gh-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (30 loc) · 893 Bytes
/
publish.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
name: publish
on:
push:
branches:
- main
env:
REGISTRY_USERNAME: ${{ secrets.DOCKERHUBUSERNAME }}
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to Docker
uses: docker/login-action@v3
if: env.REGISTRY_USERNAME != ''
with:
username: ${{ secrets.DOCKERHUBUSERNAME }}
password: ${{ secrets.DOCKERHUBACCESSTOKEN }}
- name: Build Docker image
if: env.REGISTRY_USERNAME != ''
run: |
docker build --pull --tag ${{ secrets.DOCKERHUBUSERNAME }}/gh-actions-tf-docs:edge .
docker push ${{ secrets.DOCKERHUBUSERNAME }}/gh-actions-tf-docs:edge
release-draft:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.COMMITTER_TOKEN }}