Skip to content

Commit

Permalink
⚒️
Browse files Browse the repository at this point in the history
  • Loading branch information
fuegovic authored Mar 14, 2024
1 parent 5794de4 commit 97a687c
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/starguard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,24 @@ on:
- main

jobs:

build-and-push-image-bot:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Docker
uses: docker/setup-buildx-action@v3

- name: Log in to the Container registry
uses: docker/login-action@v2
uses: docker/login-action@v2.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
node-version: '20'

- name: Build and push Docker image for bot
run: |
Expand All @@ -36,20 +38,21 @@ jobs:
build-and-push-image-server:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Docker
uses: docker/setup-buildx-action@v3

- name: Log in to the Container registry
uses: docker/login-action@v2
uses: docker/login-action@v2.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
node-version: '20'

- name: Build and push Docker image for server
run: |
Expand Down

0 comments on commit 97a687c

Please sign in to comment.