Skip to content

Commit

Permalink
VyOS v1.2.7 LTS Release
Browse files Browse the repository at this point in the history
  • Loading branch information
9l committed Apr 2, 2021
1 parent 0978190 commit e65052d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/vyos-v1.2-lts-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
ARCHITECTURE: amd64
BUILD_BY: [email protected]
BUILD_TYPE: release
VERSION: 1.2.6-S1
VERSION: 1.2.7
DEBIAN_MIRROR: http://ftp.us.debian.org/debian/

jobs:
Expand All @@ -20,18 +20,18 @@ jobs:
container:
image: vyos/vyos-build:crux
options: --workdir /vyos --privileged

steps:
- name: Clone source code
run:
git clone -b $BRANCH --single-branch $GIT_CLONE_URL

- name: Build ISO
working-directory: ./vyos-build
run: |
./configure --architecture $ARCHITECTURE --build-by $BUILD_BY --build-type $BUILD_TYPE --version $VERSION
sudo make iso
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
Expand All @@ -41,7 +41,7 @@ jobs:
release:
runs-on: ubuntu-latest
needs: build

steps:
- name: Download artifact
uses: actions/download-artifact@v2
Expand All @@ -61,12 +61,12 @@ jobs:
prerelease: false

- name: Upload release asset
id: 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 }}
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: vyos-${{ env.VERSION }}-${{ env.ARCHITECTURE }}.iso
asset_name: vyos-${{ env.VERSION }}-${{ env.ARCHITECTURE }}.iso
asset_content_type: application/octet-stream

0 comments on commit e65052d

Please sign in to comment.