summaryrefslogtreecommitdiffstats
path: root/.github/workflows/remove-files.yml
blob: 1d72362d0b7ace72b94738caa6d691cc174883bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: hdf5 dev remove-files

# Controls when the action will run. Triggers the workflow on a schedule
on:
  workflow_call:
    inputs:
      use_tag:
        description: 'Release version tag'
        type: string
        required: false
        default: snapshot
      use_environ:
        description: 'Environment to locate files'
        type: string
        required: true
        default: snapshots
      file_base:
        description: "The common base name of the source tarballs"
        required: true
        type: string

# Minimal permissions to be inherited by any job that doesn't declare its own permissions
permissions:
  contents: read

# Previous workflows must pass to get here so tag the commit that created the files
jobs:
  PreRelease-delfiles:
    runs-on: ubuntu-latest
    environment: ${{ inputs.use_environ }}
    permissions:
        contents: write
    steps:
      - name: Get file base name
        id: get-file-base
        run: |
          FILE_NAME_BASE=$(echo "${{ inputs.file_base }}")
          echo "FILE_BASE=$FILE_NAME_BASE" >> $GITHUB_OUTPUT

      - name: PreRelease delete from tag
        id: delete_prerelease
        if: ${{ (inputs.use_environ == 'snapshots') }}
        uses: mknejp/delete-release-assets@v1
        with:
          token: ${{ github.token }}
          tag: "${{ inputs.use_tag }}"
          assets: |
              ${{ steps.get-file-base.outputs.FILE_BASE }}-hdf5_compat_report.html
              ${{ steps.get-file-base.outputs.FILE_BASE }}-hdf5_hl_compat_report.html
              ${{ steps.get-file-base.outputs.FILE_BASE }}-hdf5_cpp_compat_report.html
              ${{ steps.get-file-base.outputs.FILE_BASE }}-java_compat_report.html
              ${{ steps.get-file-base.outputs.FILE_BASE }}.doxygen.zip
              ${{ steps.get-file-base.outputs.FILE_BASE }}.tar.gz
              ${{ steps.get-file-base.outputs.FILE_BASE }}.zip
              ${{ steps.get-file-base.outputs.FILE_BASE }}-osx12.tar.gz
              ${{ steps.get-file-base.outputs.FILE_BASE }}-ubuntu-2204_gcc.tar.gz
              ${{ steps.get-file-base.outputs.FILE_BASE }}-ubuntu-2204_gcc_s3.tar.gz
              ${{ steps.get-file-base.outputs.FILE_BASE }}-win-vs2022_cl.zip
              ${{ steps.get-file-base.outputs.FILE_BASE }}-ubuntu-2204_intel.tar.gz
              ${{ steps.get-file-base.outputs.FILE_BASE }}-win-vs2022_intel.zip