From 3886ae8f53294a0f621c16ea33058c6b6f7d2f48 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 13 Jan 2021 13:41:37 +0100 Subject: [PATCH] Simply additional tags (#5) --- .github/workflows/additional-tags.yaml | 18 ++++++++++++++++++ .github/workflows/lint.yaml | 2 +- .github/workflows/release-tracker.yaml | 22 ---------------------- 3 files changed, 19 insertions(+), 23 deletions(-) create mode 100644 .github/workflows/additional-tags.yaml delete mode 100644 .github/workflows/release-tracker.yaml diff --git a/.github/workflows/additional-tags.yaml b/.github/workflows/additional-tags.yaml new file mode 100644 index 0000000..72479d2 --- /dev/null +++ b/.github/workflows/additional-tags.yaml @@ -0,0 +1,18 @@ +--- +name: Additional Tags + +# yamllint disable-line rule:truthy +on: + push: + tags: + - v[0-9]+.[0-9]+.[0-9]+ + +jobs: + additional-tags: + name: 🏷 Additional Tags + runs-on: ubuntu-latest + steps: + - name: ⤵️ Check out code from GitHub + uses: actions/checkout@v2.3.4 + - name: 🚀 Run Release Tracker + uses: vweevers/additional-tags-action@v1.0.0 diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index b38bc99..b6ba8d3 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: ⤵️ Check out code from GitHub - uses: actions/checkout@v2 + uses: actions/checkout@v2.3.4 - name: 🚀 Run yamllint uses: frenck/action-yamllint@v1.0.1 diff --git a/.github/workflows/release-tracker.yaml b/.github/workflows/release-tracker.yaml deleted file mode 100644 index f60daa7..0000000 --- a/.github/workflows/release-tracker.yaml +++ /dev/null @@ -1,22 +0,0 @@ ---- -name: Release Tracker - -# yamllint disable-line rule:truthy -on: - push: - tags: - - v[0-9]+.[0-9]+.[0-9]+ - workflow_dispatch: - -jobs: - release-tracker: - name: 🏷 Release Tracker - runs-on: ubuntu-latest - steps: - - name: ⤵️ Check out code from GitHub - uses: actions/checkout@v2 - with: - fetch-depth: 0 - ref: main - - name: 🚀 Run Release Tracker - uses: bewuethr/release-tracker-action@v1.2.0