|
1 | 1 | name: 'docker-tags' |
2 | 2 | description: 'Set Docker default Tag environment variables' |
3 | 3 | # inputs: |
4 | | -# outputs: |
| 4 | +outputs: |
| 5 | + BRANCH_NAME: |
| 6 | + description: 'The branch name' |
| 7 | + value: ${{ steps.tags.outputs.BRANCH_NAME }} |
| 8 | + TAG: |
| 9 | + description: 'The Docker tag' |
| 10 | + value: ${{ steps.tags.outputs.TAG }} |
| 11 | + TAG_PLOT: |
| 12 | + description: 'The Docker tag for the plot' |
| 13 | + value: ${{ steps.tags.outputs.TAG_PLOT }} |
| 14 | + TAG_FREQAI: |
| 15 | + description: 'The Docker tag for the freqai' |
| 16 | + value: ${{ steps.tags.outputs.TAG_FREQAI }} |
| 17 | + TAG_FREQAI_RL: |
| 18 | + description: 'The Docker tag for the freqai_rl' |
| 19 | + value: ${{ steps.tags.outputs.TAG_FREQAI_RL }} |
| 20 | + TAG_FREQAI_TORCH: |
| 21 | + description: 'The Docker tag for the freqai_torch' |
| 22 | + value: ${{ steps.tags.outputs.TAG_FREQAI_TORCH }} |
| 23 | + TAG_ARM: |
| 24 | + description: 'The Docker tag for the arm' |
| 25 | + value: ${{ steps.tags.outputs.TAG_ARM }} |
| 26 | + TAG_PLOT_ARM: |
| 27 | + description: 'The Docker tag for the plot arm' |
| 28 | + value: ${{ steps.tags.outputs.TAG_PLOT_ARM }} |
| 29 | + TAG_FREQAI_ARM: |
| 30 | + description: 'The Docker tag for the freqai arm' |
| 31 | + value: ${{ steps.tags.outputs.TAG_FREQAI_ARM }} |
| 32 | + TAG_FREQAI_RL_ARM: |
| 33 | + description: 'The Docker tag for the freqai_rl arm' |
| 34 | + value: ${{ steps.tags.outputs.TAG_FREQAI_RL_ARM }} |
| 35 | + TAG_PI: |
| 36 | + description: 'The Docker tag for the pi' |
| 37 | + value: ${{ steps.tags.outputs.TAG_PI }} |
| 38 | + CACHE_TAG_PI: |
| 39 | + description: 'The Docker cache tag for the pi' |
| 40 | + value: ${{ steps.tags.outputs.CACHE_TAG_PI }} |
5 | 41 | runs: |
6 | 42 | using: "composite" |
7 | 43 | steps: |
8 | 44 | - name: Extract branch name |
9 | 45 | shell: bash |
| 46 | + id: tags |
10 | 47 | env: |
11 | 48 | BRANCH_NAME_INPUT: ${{ github.event.inputs.branch_name }} |
12 | 49 | run: | |
|
0 commit comments