Skip to content

Commit

Permalink
Building image
Browse files Browse the repository at this point in the history
  • Loading branch information
aiaragomes committed Aug 24, 2023
1 parent 169087c commit c8a25ff
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 37 deletions.
72 changes: 36 additions & 36 deletions .github/workflows/github_actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,39 +33,39 @@ jobs:
# stop the build if not following PEP8 guidelines
flake8 .
# containerize:
#
# runs-on: ubuntu-latest
#
# steps:
# - name: Checkout repository
# uses: actions/checkout@v2
# - name: Extract branch name
# shell: bash
# run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
# id: extract_branch
# - name: downcase REPO
# run: |
# echo "REPO=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV}
# - name: Log in to the Container registry
# uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
# with:
# registry: ${{ env.REGISTRY }}
# username: ${{ github.actor }}
# password: ${{ secrets.GITHUB_TOKEN }}
# - name: Build container
# id: docker_build
# uses: docker/build-push-action@v2
# if: steps.extract_branch.outputs.branch != 'main'
# with:
# context: ./
# push: true
# tags: ghcr.io/${{ env.REPO }}:${{ steps.extract_branch.outputs.branch }}
# - name: Build container
# id: docker_build_main
# uses: docker/build-push-action@v2
# if: steps.extract_branch.outputs.branch == 'main'
# with:
# context: ./
# push: true
# tags: ghcr.io/${{ env.REPO }}:${{ steps.extract_branch.outputs.branch }}, ghcr.io/${{ env.REPO }}:latest
containerize:

runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
- name: downcase REPO
run: |
echo "REPO=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV}
- name: Log in to the Container registry
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build container
id: docker_build
uses: docker/build-push-action@v2
if: steps.extract_branch.outputs.branch != 'main'
with:
context: ./
push: true
tags: ghcr.io/${{ env.REPO }}:${{ steps.extract_branch.outputs.branch }}
- name: Build container
id: docker_build_main
uses: docker/build-push-action@v2
if: steps.extract_branch.outputs.branch == 'main'
with:
context: ./
push: true
tags: ghcr.io/${{ env.REPO }}:${{ steps.extract_branch.outputs.branch }}, ghcr.io/${{ env.REPO }}:latest
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
description='Vantage6 algorithm for kmeans',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/aiaragomes/v6-kmeans-py',
url='https://github.com/MaastrichtU-CDS/v6-kmeans-py',
license='MIT License',
keywords=['Vantage6', 'Federated Algorithms', 'Unsupervised Learning'],
packages=find_packages(),
Expand Down

0 comments on commit c8a25ff

Please sign in to comment.