Skip to content

merge Guava 0.7.1

merge Guava 0.7.1 #6

Workflow file for this run

on:
push:
tags:
- '*.*.*'
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Bundle Atomic Framework
uses: TeamMeadows/bundler@v0.1.0
with:
name: atomic
type: addon
- name: Pack bundle into zip
run: |
mkdir -p artifacts
cd dist
zip -r ../artifacts/atomic-framework-release.zip atomic
- name: Publish to releases
uses: softprops/action-gh-release@v2
with:
files: artifacts/atomic-framework-release.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}