aboutsummaryrefslogtreecommitdiff
blob: e1b7829dbb2e9e33de495c338c58ba6cf168f752 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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