Skip to content

Commit

Permalink
Change variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
vemel committed Nov 20, 2019
1 parent f8a907e commit 9c8bf33
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/on_release_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Extract version from tags
id: version
- name: Extract variables from env
id: vars
run: |
echo "GitHub ref ${GITHUB_REF}"
TAG=`echo "${GITHUB_REF}" | cut -f 3 -d "/" | cut -f 1 -d "-"`
Expand All @@ -22,7 +22,7 @@ jobs:
python-version: "3.7"
- name: Bump version
run: |
scripts/bump_version.sh ${{ steps.version.outputs.result }}
scripts/bump_version.sh ${{ steps.vars.outputs.version }}
- name: Install builder
run: |
python -m pip install --upgrade pip
Expand All @@ -34,7 +34,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
scripts/dockerize.sh ${{ steps.version.outputs.result }}
scripts/dockerize.sh ${{ steps.vars.outputs.version }}
- name: Build packages
run: |
rm -rf mypy_boto3_output/*
Expand Down

0 comments on commit 9c8bf33

Please sign in to comment.