forked from moritz-wundke/Boost-for-Android
-
Notifications
You must be signed in to change notification settings - Fork 42
72 lines (64 loc) · 2.26 KB
/
ci.yaml
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
61
62
63
64
65
66
67
68
69
70
71
72
name: Release Asset Check
on:
workflow_dispatch:
inputs:
tagName:
description: 'Tag Name to Process (leave empty for latest)'
required: false
default: ''
release:
types: [created, published]
jobs:
check-release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install GitHub CLI
run: |
if ! command -v gh &> /dev/null
then
echo "GitHub CLI not found, installing..."
sudo apt update
sudo apt install -y gh
else
echo "GitHub CLI is already installed."
fi
gh --version
- name: Determine the Tag Name
id: get-tag-name
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
if [[ "${{ github.event_name }}" == "workflow_dispatch" && "${{ github.event.inputs.tagName }}" != "" ]]; then
echo "Using manually provided tag name: ${{ github.event.inputs.tagName }}"
echo "::set-output name=tag_name::${{ github.event.inputs.tagName }}"
else
echo "Determining the latest release tag..."
release_info=$(gh release view --json tagName -q .tagName)
echo "::set-output name=tag_name::$release_info"
fi
- name: Download the release asset
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# Construct the asset file name
asset_name="${{ steps.get-tag-name.outputs.tag_name }}.zip"
echo "Looking for asset: $asset_name"
# Use GitHub CLI to download the asset
gh release download "${{ steps.get-tag-name.outputs.tag_name }}" \
--pattern "$asset_name" \
--dir .
- name: Extract the archive
run: |
asset_name="${{ steps.get-tag-name.outputs.tag_name }}.zip"
unzip "$asset_name" -d extracted
# - name: Check for the specific file
# run: |
# # Update this path to the expected location of your file within the extracted directory
# if [ -f "extracted/path/to/your/file" ]; then
# echo "File exists."
# else
# echo "File does not exist."
# exit 1
# fi