We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6e9ed26 + f1513fb commit 8566127Copy full SHA for 8566127
.github/workflows/docker-image.yml
@@ -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