Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/git-release-pre.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set output
id: vars
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
uses: actions/checkout@v4
- name: Moving build to dist-directory
run: ./copyFilesToDist.sh
shell: bash
env:
GITHUB_REF_VARIABLE: ${{ steps.vars.outputs.tag }}
GITHUB_REF_VARIABLE: ${{ github.ref_name }}
- name: Release
uses: docker://antonyurchenko/git-release:latest
env:
Expand Down
11 changes: 4 additions & 7 deletions .github/workflows/git-release-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set output
id: vars
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
uses: actions/checkout@v4
- name: Check output
env:
RELEASE_VERSION: ${{ steps.vars.outputs.tag }}
RELEASE_VERSION: ${{ github.ref_name }}
run: |
echo $RELEASE_VERSION
echo ${{ steps.vars.outputs.tag }}
echo ${{ github.ref_name }}
- name: Moving build to dist-directory
run: ./copyFilesToDist.sh
shell: bash
env:
GITHUB_REF_VARIABLE: ${{ steps.vars.outputs.tag }}
GITHUB_REF_VARIABLE: ${{ github.ref_name }}
- name: Release
uses: docker://antonyurchenko/git-release:latest
env:
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/git-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set output
id: vars
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
uses: actions/checkout@v4
- name: Moving build to dist-directory
run: ./copyFilesToDist.sh
shell: bash
env:
GITHUB_REF_VARIABLE: ${{ steps.vars.outputs.tag }}
GITHUB_REF_VARIABLE: ${{ github.ref_name }}
- name: Release
uses: docker://antonyurchenko/git-release:latest
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down