chore(deps): Bump word-wrap from 1.2.3 to 1.2.4 (#161) #273
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: Deploy | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- latest | |
- v* | |
jobs: | |
ghcr: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Fetch tags | |
run: | | |
git fetch --prune --tags ||: | |
- name: Setup system dependencies | |
run: | | |
sudo apt-get install autoconf-archive | |
- name: Configure | |
run: | | |
./bootstrap.sh | |
./configure \ | |
--without-{bash,fish,zsh}-completion-dir \ | |
--enable-developer \ | |
--disable-dependency-checks \ | |
CURL=curl DOCKER=docker DIFF=diff TR=tr SORT=sort \ | |
- name: Publish Docker Image to GH Container Registry | |
run: | | |
make docker-build-push | |
env: | |
DOCKER_REGISTRY: ghcr.io | |
DOCKER_REPO: ${{ github.repository }} | |
DOCKER_TAG: ${{ github.ref_name }} | |
DOCKER_USERNAME: ${{ github.actor }} | |
DOCKER_PAT: ${{ secrets.CR_SILE_TYPESETTER }} |