npm(deps-dev): bump eslint-plugin-jest from 28.3.0 to 28.6.0 #174
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: | ||
tags: | ||
- '**' | ||
tags-ignore: | ||
- 'v**' | ||
name: promote release | ||
jobs: | ||
promote: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
- name: Get the artifacts name of workflow test-get | ||
uses: ./ | ||
id: artifacts | ||
with: | ||
url: https://artifacts.scality.net | ||
user: ${{ secrets.ARTIFACTS_USER }} | ||
password: ${{ secrets.ARTIFACTS_PASSWORD }} | ||
workflow-name: test-get | ||
method: get | ||
- name: Artifacts Promote | ||
uses: ./ | ||
with: | ||
url: https://artifacts.scality.net | ||
user: ${{ secrets.ARTIFACTS_USER }} | ||
password: ${{ secrets.ARTIFACTS_PASSWORD }} | ||
name: ${{ steps.artifacts.outputs.name }} | ||
tag: '${{ github.ref_name }}' | ||
method: promote |