Fix PL1b_FRMCal where direct is interpolated at edge of array #7
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
name: Build & Release Pipeline | |
on: | |
push: | |
branches: | |
- master | |
- bundle | |
# tags: | |
# - 'v[0-9]+.[0-9]+.*' | |
workflow_dispatch: | |
jobs: | |
Build: | |
name: π¦ Bundle Application | |
uses: ./.github/workflows/Build.yml | |
Release: | |
name: π Draft Release Page | |
uses: ./.github/workflows/Release.yml | |
needs: | |
- Build | |
ArtifactCleanUp: | |
name: ποΈ Artifact Cleanup | |
runs-on: ubuntu-latest | |
needs: | |
- Build | |
- Release | |
steps: | |
- name: Delete Artifact | |
if: startsWith(github.ref, 'refs/heads/master') || startsWith(github.ref, 'refs/tags') | |
uses: geekyeggo/delete-artifact@v4 | |
with: | |
name: ${{ needs.Build.outputs.files }} | |
token: ${{ secrets.GITHUB_TOKEN }} |