Skip to content

Commit 8566127

Browse files
committed
2 parents 6e9ed26 + f1513fb commit 8566127

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/docker-image.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Docker Image CI
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
contents: read
12+
packages: write
13+
14+
steps:
15+
- name: Checkout the code
16+
uses: actions/checkout@v2
17+
18+
- name: Build docker Nuxt
19+
uses: Libertech-FR/lt-actions/docker-image@main
20+
with:
21+
repository: ${{ github.repository }}
22+
username: ${{ github.actor }}
23+
password: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)