Remove references from github
This commit is contained in:
parent
80b1a70a2f
commit
c3f8625f3b
2 changed files with 1 additions and 41 deletions
40
.github/workflows/release.yml
vendored
40
.github/workflows/release.yml
vendored
|
@ -1,40 +0,0 @@
|
|||
name: Compile Latex and Release PDF
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
|
||||
jobs:
|
||||
build_latex:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
pull-requests: write
|
||||
steps:
|
||||
- name: Set up Git repository
|
||||
uses: actions/checkout@v3
|
||||
- name: Compile LaTeX document
|
||||
uses: xu-cheng/latex-action@v3
|
||||
with:
|
||||
root_file: main.tex
|
||||
- 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 Release Asset
|
||||
id: upload-release-asset
|
||||
uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||
asset_path: ./main.pdf
|
||||
asset_name: leonardo-murca-resume-${{ github.ref_name }}.pdf
|
||||
asset_content_type: pdf
|
|
@ -1,3 +1,3 @@
|
|||
# resume
|
||||
|
||||
This is my resume source code built with LaTeX. Check out and download the [latest release](https://github.com/leomurca/resume/releases).
|
||||
This is my resume source code built with LaTeX. Check out and download the [latest release](https://git.leomurca.xyz/leomurca/resume/releases).
|
||||
|
|
Loading…
Add table
Reference in a new issue