chore: bump emojis #22
Workflow file for this run
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: Build sources | |
on: push | |
jobs: | |
build-sources: | |
name: Build symbol sources | |
runs-on: ubuntu-latest | |
if: github.ref != 'master' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Prepare | |
run: | | |
sudo apt-get update | |
sudo add-apt-repository universe | |
wget https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage | |
chmod u+x nvim.appimage | |
mkdir -p ~/.local/share/nvim/site/pack/vendor/start | |
ln -s $(pwd) ~/.local/share/nvim/site/pack/vendor/start | |
git clone --depth 1 https://github.com/nvim-lua/plenary.nvim ~/.local/share/nvim/site/pack/vendor/start/plenary.nvim | |
# inspired by nvim-lspconfigs | |
- name: Build sources | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
COMMIT_MSG: | | |
[Actions] Build sources | |
skip-checks: true | |
run: | | |
git config user.email "actions@github" | |
git config user.name "Github Actions" | |
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git | |
./nvim.appimage --headless -c "luafile ./script/downloader.lua" -c "q" | |
git add data/ | |
# Only commit and push if we have changes | |
git diff --quiet && git diff --staged --quiet || (git commit -m "${COMMIT_MSG}"; git push origin HEAD:${GITHUB_REF}) |