linux-surface/.github/workflows/release.yml

74 lines
1.9 KiB
YAML
Raw Normal View History

2020-01-08 14:00:25 +00:00
on:
push:
branches:
- feature/pkg
# tags:
2020-01-09 00:42:47 +00:00
# - 'v*+'
2020-01-08 14:00:25 +00:00
name: Create release and upload binaries
jobs:
build-arch:
name: Build Arch Linux
runs-on: ubuntu-latest
container: archlinux
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build
2020-01-09 00:42:47 +00:00
env:
GPG_KEY: ${{ secrets.GITHUB_GPG_KEY }}
GPG_PASSPHRASE: ${{ secrets.GITHUB_GPG_PASSPHRASE }}
2020-01-08 14:00:25 +00:00
run: |
2020-01-09 00:42:47 +00:00
pushd pkg/arch
# Create user
useradd -m -g wheel -s /bin/bash build
echo "build ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
chown -R build:wheel .
chown -R build:wheel $HOME
# Install makepkg deps
pacman -Sy sudo binutils fakeroot grep base-devel git --noconfirm
# Build
su build --pty -s /bin/bash -c './build.sh'
popd
2020-01-08 14:00:25 +00:00
mkdir release
mv pkg/arch/**/*.pkg.tar.zst* release
2020-01-09 00:42:47 +00:00
2020-01-08 14:00:25 +00:00
- name: Upload artifacts
uses: actions/upload-artifact@v1
with:
name: arch-latest
path: release
release:
name: Create and Upload Release
needs: [build-arch]
runs-on: ubuntu-latest
steps:
- name: Download Arch Linux artifacts
uses: actions/download-artifact@v1
with:
name: arch-latest
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: false
prerelease: false
- name: Upload Arch Linux Assets to Release
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ./arch-latest/*
tag: ${{ github.ref }}
overwrite: true
file_glob: true