Skip to content

Commit

Permalink
improve: remove unneeded job dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronware authored Apr 3, 2022
1 parent b846bbb commit 15302d9
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ jobs:
plugin_setup:
name: Plugin(s)
runs-on: ubuntu-latest
needs: dependency_setup
strategy:
matrix:
plugin: ${{ fromJSON( inputs.plugins ) }}
Expand Down Expand Up @@ -201,29 +200,24 @@ jobs:
runs-on: ubuntu-latest
needs: [dependency_setup,theme_setup,plugin_setup]
steps:

- name: Download All Artifacts
uses: actions/download-artifact@v3
with:
path: ./

- name: Decompress Composer Artifacts
id: decompress_composer_artifacts
run: |
tar -xzf ./artifact/composer.tar.gz -C ./
- name: Decompress Theme Artifacts
if: ${{ inputs.themes != '["none"]' }} # skip this step if no themes are included.
id: decompress_theme_artifacts
run: |
tar -xzf ./artifact/theme-*.tar.gz -C ./build
- name: Decompress Plugin Artifacts
if: ${{ inputs.plugins != '["none"]' }} # skip this step if no themes are included.
id: decompress_plugin_artifacts
run: |
tar -xzf ./artifact/plugin-*.tar.gz -C ./build
- name: Clean Build Files/Folders
id: clean_build_ff
run: |
Expand All @@ -234,12 +228,10 @@ jobs:
sh ./cleanup.sh
cd ../../
rm -rf ./build/.deployment/
- name: Get Current Version
id: version
run: |
echo ::set-output name=tag::${GITHUB_REF#refs/tags/v}
# Latest changelog entry is based on version. If not found, fall back to the last version
- name: Get Latest CHANGELOG.md Entry
id: changelog_reader
Expand Down

0 comments on commit 15302d9

Please sign in to comment.