Skip to content

Commit

Permalink
fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
delcroip authored Feb 23, 2023
1 parent ec38870 commit 2415c3b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: publish
on:
tags:
on:
release:
jobs:
publish-docker-image:
runs-on: ubuntu-latest
Expand All @@ -10,10 +10,10 @@ jobs:
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build the docker Docker image
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build the hello-docker Docker image
run: |
docker build . --tag ghcr.io/openimis/openimis-be:${GITHUB_REF##*/}
docker run ghcr.io/openimis/openimis-be:${GITHUB_REF##*/}
docker push ghcr.io/openimis/openimis-be:${GITHUB_REF##*/}
docker build . --tag ghcr.io/openimis/openimis-mssql:${GITHUB_REF##*/}
docker run ghcr.io/openimis/openimis-mssql:${GITHUB_REF##*/}
docker push ghcr.io/openimis/openimis-mssql:${GITHUB_REF##*/}
2 changes: 1 addition & 1 deletion .github/workflows/openmis-module-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
path: './new'
- name: generate new files
working-directory: ./new
run: bash concatenate_files.sh
run: bash script/concatenate_files.sh
- name: install linux packages
run: |
mkdir ./oldMain
Expand Down

0 comments on commit 2415c3b

Please sign in to comment.