Change git@ to https recursively #242
Workflow file for this run
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
on: | |
push: | |
branches: | |
- master | |
- v1.12_RC | |
jobs: | |
doc_build_job: | |
runs-on: ubuntu-latest | |
# This project MUST be given permission to use the image blow. at | |
# Package settings-> Manage action access of the project hosting the | |
# package | |
container: 'ghcr.io/thesystemdevelopmentkit/thesdktestimage:latest' | |
name: Build documentation | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Documentation builder action | |
run: ./CI-helpers/build_docs.sh -c -t ${{ secrets.THESYDEKICK_TOKEN }} | |
submodule_update_job: | |
runs-on: ubuntu-latest | |
# This project MUST be given permission to use the image blow. at | |
# Package settings-> Manage action access of the project hosting the | |
# package | |
container: 'ghcr.io/thesystemdevelopmentkit/thesdktestimage:latest' | |
name: Update and test submodules | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Test and release action | |
run: ./CI-helpers/test_and_release.sh -c -b ${GITHUB_REF##*/} -t ${{ secrets.THESYDEKICK_TOKEN }} | |
## This is an example how to run a image pull if needed. | |
# image_pull: | |
# runs-on: ubuntu-latest | |
# name: Pull docker image | |
# steps: | |
# - name: Login to Github Packages | |
# uses: docker/login-action@v1 | |
# with: | |
# registry: ghcr.io | |
# username: ${{ github.actor }} | |
# password: ${{ secrets.GITHUB_TOKEN}} | |
# | |
# - name: Pull image | |
# uses: docker/login-action@v1 | |
# with: | |
# registry: ghcr.io | |
# username: ${{ github.actor }} | |
# password: ${{ secrets.GITHUB_TOKEN}} | |
# - name: Pull Docker image | |
# run: docker pull 'ghcr.io/thesystemdevelopmentkit/thesdktestimage:latest' | |