luongthanhlam is triggering on GitHub Actions 🚀 #73
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: Release ibus-bamboo | |
run-name: ${{ github.actor }} is triggering on GitHub Actions 🚀 | |
on: [push] | |
jobs: | |
Releaser: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
with: | |
fetch-depth: 1 | |
- run: sudo apt-get update && sudo apt-get install -y make libibus-1.0-dev libx11-dev libxtst-dev libgtk-3-dev osc | |
- run: make t && make build | |
- shell: bash | |
env: | |
OSC_USER: ${{ secrets.OSC_USER }} | |
OSC_PASS: ${{ secrets.OSC_PASS }} | |
OSC_PATH: ${{ secrets.OSC_PATH }} | |
GH_TAG: ${{ github.ref_name }} | |
run: | | |
chmod +x osc.bash | |
./osc.bash | |
- run: echo "🍏 This job's status is ${{ job.status }}." |