Make Repository #268
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: Make Repository | |
on: | |
push: | |
branches: | |
- master | |
- debug | |
schedule: | |
- cron: "21 4 * * 0" | |
jobs: | |
build_repository: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get current time and date | |
id: date | |
run: echo "::set-output name=date::$(date +'%Y-%m-%d %H:%M')" | |
- name: Build Packages | |
uses: kopp/build-aur-packages@v1 | |
with: | |
packages: > | |
arduino-ide-bin | |
azure-cli | |
conan | |
micronucleus-git | |
microsoft-edge-stable-bin | |
neovim-symlinks | |
onedrive-abraunegg | |
python-pydub | |
python-selenium | |
selenium-manager | |
uv-bin | |
jmtpfs | |
qtfm | |
skypeforlinux-stable-bin | |
srecord | |
tp-battery-mode | |
vdhcoapp-bin | |
visual-studio-code-bin | |
xfig | |
- name: List generated Files | |
run: ls -1 > ${{ github.workspace }}/files.txt | |
- name: Remove the current data from the release | |
uses: kopp/action-delete-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: aurci2 | |
- name: Upload Files to Release | |
uses: softprops/action-gh-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: aurci2 | |
name: aurci build ${{ github.run_number }} from ${{ steps.date.outputs.date }} | |
body: aurci build ${{ github.run_number }} from ${{ steps.date.outputs.date }} | |
files: | | |
${{ github.workspace }}/* | |
draft: false | |
prerelease: false |