-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from JacobusXIII/build_and_publish
Configure build and publish using GitHub Actions
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Publish Docker image | ||
|
||
on: | ||
push: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Get project version | ||
id: get_project_version | ||
run: | | ||
VERSION=$(<VERSION) | ||
echo "version=${VERSION}" >> $GITHUB_OUTPUT | ||
- if: github.event_name == 'release' || endsWith(steps.get_project_version.outputs.version, '-SNAPSHOT') | ||
name: Login to AERIUS Container Registry | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: nexus-docker.aerius.nl | ||
username: ${{ secrets.nexus_username }} | ||
password: ${{ secrets.nexus_password }} | ||
- if: github.event_name == 'release' || endsWith(steps.get_project_version.outputs.version, '-SNAPSHOT') | ||
name: Build and push images | ||
run: | | ||
export DOCKER_REGISTRY_URL=nexus-docker.aerius.nl | ||
echo '### Generating Dockerfiles ### ' | ||
./update.sh | ||
echo '### Building and pushing images ### ' | ||
PUSH_IMAGES=true ./build_images.sh |