Compare commits

..

No commits in common. "0960fe5bf6d03b7fc6a6c0b37421231e47703331" and "9a33b82b420f50ce024947143d3defdc73f82d4d" have entirely different histories.

2 changed files with 20 additions and 15 deletions

View File

@ -1,4 +1,4 @@
Name: Terraform Processing
Name: Container Build Check
run-name: ${{ gitea.actor }}
on:
push:
@ -9,20 +9,19 @@ on:
jobs:
Plan:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
#
- name: List Contents
id: ls
run: ls -al
- name: Deploy
- name: Login to repo
id: login
run: |
echo "${{ secrets.GITEASECRET_TOKEN }}" | docker login git.hamik.net -u paradizelost --password-stdin
docker build -t git.hamik.net/paradizelost/visubnet:latest .
echo "${{ secrets.GITEASECRET_TOKEN }}" | docker login git.hamik.net -u paradizelost --password-stdin
docker build -t git.hamik.net/paradizelost/visubnet:latest .

View File

@ -17,8 +17,14 @@ jobs:
id: ls
run: ls -al
- name: Deploy
run: |
echo "${{ secrets.GITEASECRET_TOKEN }}" | docker login git.hamik.net -u paradizelost --password-stdin
docker build -t git.hamik.net/paradizelost/visubnet:latest .
docker push git.hamik.net/paradizelost/visubnet
- name: Login to repo
id: login
run: echo "${{ secrets.GITEASECRET_TOKEN }}" | docker login git.hamik.net -u paradizelost --password-stdin
- name: Build
id: Build Verify
run: docker build -t git.hamik.net/paradizelost/visubnet:latest .
- name: Push to Repository
id: push
run: docker push git.hamik.net/paradizelost/visubnet