Merge pull request #157 from JeremiahSanders/task/update-nodejs-to-20… #124
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
name: Publish Prerelease | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
publish-prerelease: | |
# ubuntu-latest provides many dependencies. | |
# See: https://github.com/actions/runner-images | |
# See: https://github.com/actions/runner-images/blob/a1633b01936bfd1fcd4ec9a88d087b0e07e907aa/images/ubuntu/Ubuntu2204-Readme.md | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout latest commit | |
uses: actions/checkout@v4 | |
- name: Execute compose script - Create a dry run composition to validate without publishing | |
run: ci/bin/compose.sh | |
env: | |
DOCKER_IMAGE_REPOSITORY: ${{secrets.DOCKER_IMAGE_REPOSITORY}} | |
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}} | |
DOCKER_USERNAME: ${{secrets.DOCKER_USERNAME}} |