Skip to content

Commit

Permalink
Add initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
JaSiLez authored Apr 23, 2024
1 parent 5e6aa81 commit b26a791
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 9 deletions.
26 changes: 26 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Lines starting with '#' are comments.
# Each line is a file pattern followed by one or more owners.

# More details are here: https://help.github.com/articles/about-codeowners/

# The '*' pattern is global owners.

# Order is important. The last matching pattern has the most precedence.
# The folders are ordered as follows:

# In each subsection folders are ordered first by depth, then alphabetically.
# This should make it easy to add new rules without breaking existing ones.

# OWNERS_TEAMS
* @stemdo-labs/ccoe

# COMPLIANCE_TEAMS
.github/** *@stemdo-labs/ccoe


## Examples:
# C# samples:
# /csharp/** @User1

# ML.NET samples:
# /machine-learning/** @user2
17 changes: 9 additions & 8 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: cd
name: CD

on:
push:
Expand All @@ -8,7 +8,7 @@ on:
workflow_dispatch:

env:
IMAGE_NAME: network-tools
IMAGE_NAME: container-network-tools

jobs:
publish:
Expand All @@ -23,11 +23,11 @@ jobs:
- name: Check out repository
uses: actions/checkout@v4

- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
#- name: Log in to Docker Hub
# uses: docker/login-action@v3
# with:
# username: ${{ secrets.DOCKER_USERNAME }}
# password: ${{ secrets.DOCKER_PASSWORD }}

- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
Expand Down Expand Up @@ -79,7 +79,8 @@ jobs:
contents: read

env:
GHCR_TOKEN: ${{ secrets.GHCR_TOKEN }}
GHCR_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# ${{ secrets.GHCR_TOKEN }}

steps:
- name: Checkout Git repository
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
NAME := network-tools
NAME := conatainer-network-tools
ARM_NAME := network-tools-arm

TAG := dev
Expand Down

0 comments on commit b26a791

Please sign in to comment.