Update data_structures.asciidoc #65
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 PDF | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: asciidoctor/docker-asciidoctor:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: install tools | |
run: apk add git rsync erlang | |
- name: Sort out git ownership | |
run: git config --global --add safe.directory ${GITHUB_WORKSPACE} | |
- name: build | |
run: make | |
- name: release | |
if: ${{ github.ref == 'refs/heads/master' }} | |
uses: softprops/[email protected] | |
with: | |
tag_name: latest | |
files: | | |
beam-book.pdf | |
... |