diff options
Diffstat (limited to '.github/actions/manifest_build/action.yml')
-rw-r--r-- | .github/actions/manifest_build/action.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/actions/manifest_build/action.yml b/.github/actions/manifest_build/action.yml new file mode 100644 index 0000000..e1b7829 --- /dev/null +++ b/.github/actions/manifest_build/action.yml @@ -0,0 +1,25 @@ +--- +name: Build manifest +inputs: + target: + required: true + dockerhub_username: + required: true + dockerhub_password: + required: true +runs: + using: composite + steps: + - name: Set up TARGET + run: echo "TARGET=${{ inputs.target }}" | tee $GITHUB_ENV + shell: bash + - name: Login to DockerHub + uses: docker/login-action@v2 + with: + username: ${{ inputs.dockerhub_username }} + password: ${{ inputs.dockerhub_password }} + - name: Push manifests + shell: bash + env: + DOCKER_CLI_EXPERIMENTAL: enabled + run: ./deploy-manifests.sh |