Upgrade to javascript 23.3 #2
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: Main | |
on: | |
push: | |
branches: | |
- master | |
# These environment variables are used in the image builder script used to | |
# build Docker images | |
env: | |
PACKAGES_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Token for GHCR | |
PACKAGES_USERNAME: ${{ github.actor }} # Username for GHCR | |
REPO_NAME: ${{ github.event.repository.name }} # Repository name (so image_builder can check if it's testing itself) | |
TYPE: ${{ github.event_name }} # Event type (push or schedule) (so image_builder doesn't push images to GHCR on schedule) | |
jobs: | |
build-publish-trigger: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build image, test it, push it dockerhub, notify dependents | |
run: ./pipe_build_up_test.sh |