Deploy Jenkiexs #7
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 Jenkiexs | |
on: | |
workflow_run: | |
workflows: ["Main CI"] | |
types: | |
- completed | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Elixir | |
uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: '1.8.2' | |
otp-version: '22.3.4.26' | |
version-type: 'strict' | |
- name: Cache Dependencies | |
uses: actions/cache@v2 | |
with: | |
path: | | |
_build/prod/lib | |
deps | |
doc | |
mix.exs | |
mix.lock | |
key: ${{ runner.os }}-mix-prod-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} | |
restore-keys: | | |
${{ runner.os }}-mix-prod- | |
- name: Update Version | |
run: elixir ./scripts/update_version.exs | |
- name: Install Dependencies | |
run: mix deps.get | |
- name: Build Dependencies | |
env: | |
MIX_ENV: prod | |
run: mix deps.compile | |
- name: Build Jenkiexs | |
env: | |
MIX_ENV: prod | |
run: mix compile | |
- name: Build Docs | |
run: mix docs | |
check_package: | |
runs-on: ubuntu-20.04 | |
needs: build | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Elixir | |
uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: '1.8.2' | |
otp-version: '22.3.4.26' | |
version-type: 'strict' | |
- name: Cache Dependencies | |
uses: actions/cache@v2 | |
with: | |
path: | | |
_build/prod/lib | |
deps | |
doc | |
mix.exs | |
mix.lock | |
key: ${{ runner.os }}-mix-prod-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} | |
restore-keys: | | |
${{ runner.os }}-mix-prod- | |
- env: | |
HEX_API_KEY: ${{ secrets.HEX_API_KEY }} | |
run: mix hex.publish --dry-run | |
publish_package: | |
runs-on: ubuntu-20.04 | |
needs: check_package | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Elixir | |
uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: '1.8.2' | |
otp-version: '22.3.4.26' | |
version-type: 'strict' | |
- name: Cache Dependencies | |
uses: actions/cache@v2 | |
with: | |
path: | | |
_build/prod/lib | |
deps | |
doc | |
mix.exs | |
mix.lock | |
key: ${{ runner.os }}-mix-prod-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }} | |
restore-keys: | | |
${{ runner.os }}-mix-prod- | |
- env: | |
HEX_API_KEY: ${{ secrets.HEX_API_KEY }} | |
run: mix hex.publish --yes | |
update_version: | |
runs-on: ubuntu-20.04 | |
needs: publish_package | |
permissions: | |
contents: write | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Elixir | |
uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: '1.8.2' | |
otp-version: '22.3.4.26' | |
version-type: 'strict' | |
- name: Update README.md and mix.exs | |
run: | | |
elixir ./scripts/update_version.exs | |
git config user.name Lucasbot | |
git config user.email [email protected] | |
if [[ -n $(git diff --stat) ]] | |
then | |
git commit -am "Updated README.md and mix.exs to version $(cat version)." | |
git push origin main | |
else | |
echo "Already updated with version." | |
fi |