aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/build.yml
blob: e4e37a91ffc128a14d1c2323d50e19f0099bc975 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
name: Build

on:
  push:
    branches:
      - release

jobs:
  build_unix:

    runs-on: ubuntu-latest

    outputs:
      ytdlc_version: ${{ steps.bump_version.outputs.ytdlc_version }}
      upload_url: ${{ steps.create_release.outputs.upload_url }}
      sha2_unix: ${{ steps.sha2_file.outputs.sha2_unix }}

    steps:
    - uses: actions/checkout@v2
    - name: Set up Python
      uses: actions/setup-python@v2
      with:
          python-version: '3.x'
    - name: Install packages
      run: sudo apt-get -y install zip pandoc man
    - name: Bump version
      id: bump_version
      run: python scripts/update-version-workflow.py
    - name: Run Make
      run: make
    - name: Create Release
      id: create_release
      uses: actions/create-release@v1
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      with:
        tag_name: ${{ github.ref }}
        release_name: youtube-dlc ${{ steps.dump_version.outputs.ytdlc_version }}
        body: |
          Changelog:
          PLACEHOLDER
        draft: false
        prerelease: false
    - name: Upload youtube-dlc Unix binary
      id: upload-release-asset 
      uses: actions/upload-release-asset@v1
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      with:
        upload_url: ${{ steps.create_release.outputs.upload_url }}
        asset_path: ./youtube-dlc
        asset_name: youtube-dlc
        asset_content_type: application/octet-stream
    - name: Get SHA2-256SUMS for youtube-dlc
      id: sha2_file
      env:
        SHA2: ${{ hashFiles('youtube-dlc') }}
      run: echo "::set-output name=sha2_unix::${env:SHA2}"

build_windows:

    runs-on: windows-latest

    needs: build_unix

    steps:
    - uses: actions/checkout@v2
    - name: Set up Python
      uses: actions/setup-python@v2
      with:
          python-version: '3.x'
    - name: Install Requirements
      run: pip install pyinstaller
    - name: Bump version
      run: python scripts/update-version-workflow.py
    - name: Run PyInstaller Script
      run: python pyinst.py
    - name: Upload youtube-dlc.exe Windows binary
      id: upload-release-windows
      uses: actions/upload-release-asset@v1
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      with:
        upload_url: ${{ needs.build_unix.outputs.upload_url }}
        asset_path: ./dist/youtube-dlc.exe
        asset_name: youtube-dlc.exe
        asset_content_type: application/octet-stream
    - name: Get SHA2-256SUMS for youtube-dlc.exe
      id: sha2_file_win
      env:
        SHA2: ${{ hashFiles('dist/youtube-dlc.exe') }}
      run: echo "::set-output name=sha2_windows::${env:SHA2}"

  build_windows32:

    runs-on: windows-latest

    needs: build_unix

    steps:
    - uses: actions/checkout@v2
    - name: Set up Python 3.4.2 32-Bit
      uses: actions/setup-python@v2
      with:
          python-version: '3.4.2'
          architecture: 'x86'
    - name: Install Requirements for 32 Bit
      run: pip install pyinstaller==3.5
    - name: Bump version
      run: python scripts/update-version-workflow.py
    - name: Run PyInstaller Script for 32 Bit
      run: python pyinst32.py
    - name: Upload Executable youtube-dlc_x86.exe
      id: upload-release-windows32
      uses: actions/upload-release-asset@v1
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      with:
        upload_url: ${{ needs.build_unix.outputs.upload_url }}
        asset_path: ./dist/youtube-dlc_x86.exe
        asset_name: youtube-dlc_x86.exe
        asset_content_type: application/octet-stream
    - name: Get SHA2-256SUMS for youtube-dlc_x86.exe
      id: sha2_file_win32
      env:
        SHA2: ${{ hashFiles('dist/youtube-dlc_x86.exe') }}
      run: echo "::set-output name=sha2_windows32::${env:SHA2}"
    - name: Make SHA2-256SUMS file
      env:
        SHA2_WINDOWS: ${{ needs.build_windows.outputs.sha2_windows }}
        SHA2_WINDOWS32: ${{ steps.sha2_file_win32.outputs.sha2_windows32 }}
        SHA2_UNIX: ${{ needs.build_unix.outputs.sha2_unix }}
        YTDLC_VERSION: ${{ needs.build_unix.outputs.ytdlc_version }}
      run: |
        echo "$SHA2_WINDOWS youtube-dlc.exe" > SHA2-256SUMS
        echo "$SHA2_WINDOWS32 youtube-dlc32.exe" > SHA2-256SUMS
        echo "$SHA2_UNIX youtube-dlc" >> SHA2-256SUMS

  deploy:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Set up Python
      uses: actions/setup-python@v2
      with:
        python-version: '3.x'
    - name: Install dependencies
      run: |
        python -m pip install --upgrade pip
        pip install setuptools wheel twine
    - name: Bump version
      run: python scripts/update-version-workflow.py
    - name: Build and publish
      env:
        TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
        TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
      run: |
        rm -rf dist/*
        python setup.py sdist bdist_wheel
        twine upload dist/*